summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2017-05-12 17:11:38 +0300
committerIvan Maidanski <ivmai@mail.ru>2017-05-12 17:11:38 +0300
commit904bf8c69b8450bacd0ca21393aff5df6d515c20 (patch)
treef9d69f58e5e26703262137a93a81c478e19614e3 /doc
parentc5b8ba0f0862844c01c2652bf7d86e158566b779 (diff)
downloadbdwgc-904bf8c69b8450bacd0ca21393aff5df6d515c20.tar.gz
Use same style of include gc.h in documentation
* doc/README.darwin (Important usage notes): Include "gc.h" instead of include <gc/gc.h>.
Diffstat (limited to 'doc')
-rw-r--r--doc/README.darwin2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/README.darwin b/doc/README.darwin
index 7de01e87..11bb7e2e 100644
--- a/doc/README.darwin
+++ b/doc/README.darwin
@@ -21,7 +21,7 @@ cannot call GC_init() before your libraries' static initializers have
run and perhaps called GC_malloc(), create an initialization routine
for each library to call GC_init():
-#include <gc/gc.h>
+#include "gc.h"
extern "C" void my_library_init() { GC_init(); }
Compile this code into a my_library_init.o, and link it into your