Use same style of include gc.h in documentation
authorIvan Maidanski <ivmai@mail.ru>
Fri, 12 May 2017 14:11:38 +0000 (17:11 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 12 May 2017 14:11:38 +0000 (17:11 +0300)
* doc/README.darwin (Important usage notes): Include "gc.h" instead of
include <gc/gc.h>.

doc/README.darwin

index 7de01e8..11bb7e2 100644 (file)
@@ -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