aboutsummaryrefslogtreecommitdiff
path: root/system/include/gc.h
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2013-02-04 10:08:58 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2013-02-04 10:08:58 +0700
commitdefb31b122dc0458ab2c57e649b43aee4587016e (patch)
treeeb9bca190c1a198f60be9ca58d5fad7bbd838f71 /system/include/gc.h
parentc84352a5633f697cb8f72c90db4faa9500280be7 (diff)
gc.h: Missing include guards.
Diffstat (limited to 'system/include/gc.h')
-rw-r--r--system/include/gc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/system/include/gc.h b/system/include/gc.h
index 8c5a8989..a21fd410 100644
--- a/system/include/gc.h
+++ b/system/include/gc.h
@@ -1,6 +1,8 @@
/*
* Boehm-compatible GC API
*/
+#ifndef _GC_H_INCLUDED
+#define _GC_H_INCLUDED
#include <stdlib.h>
@@ -65,3 +67,4 @@ void GC_enable_incremental();
}
#endif
+#endif