source: src/examples/gc_no_raii/src/tools/worklist.h@ 4ef8fb3

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new stuck-waitfor-destruct with_gc
Last change on this file since 4ef8fb3 was 4ef8fb3, checked in by Thierry Delisle <tdelisle@…>, 10 years ago

fixed compilation of garbage collector

  • Property mode set to 100644
File size: 204 bytes
Line 
1#pragma once
2
3#ifdef __cforall
4extern "C" {
5#endif
6#include <stddef.h>
7#include <stdint.h>
8#ifdef __cforall
9}
10#endif
11
12#include "vector.h"
13
14typedef vector(intptr_t*, heap_allocator(intptr_t*)) worklist_t;
Note: See TracBrowser for help on using the repository browser.