aboutsummaryrefslogtreecommitdiff
path: root/system/include/gc.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-02-03 20:06:54 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-02-03 20:06:54 -0800
commit6d3d82bb13b8a7377e1bc8e1a65a80a2e013af4a (patch)
treebfd2ee8de2eecff97e396965e5c4f79b255b3e2f /system/include/gc.h
parent42a910da1fab3bb5d793e5ca3d9ede9244781255 (diff)
parentdefb31b122dc0458ab2c57e649b43aee4587016e (diff)
Merge pull request #830 from waywardmonkeys/dlfcn-include-guards
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