* cord/tests/cordtest.c [!NO_INCREMENTAL] (main): Call
GC_enable_incremental() after GC_INIT.
* cord/tests/de.c [!NO_INCREMENTAL] (main): Likewise.
* cord/tests/de_win.c [!NO_INCREMENTAL] (WinMain): Likewise.
* tests/staticrootslib.c [!NO_INCREMENTAL] (main): Likewise.
printf("cordtest:\n");
# endif
GC_INIT();
+# ifndef NO_INCREMENTAL
+ GC_enable_incremental();
+# endif
test_basics();
test_extras();
test_printf();
argc = ccommand(&argv);
# endif
GC_INIT();
+# ifndef NO_INCREMENTAL
+ GC_enable_incremental();
+# endif
if (argc != 2) {
fprintf(stderr, "Usage: %s file\n", argv[0]);
HACCEL hAccel;
GC_INIT();
+# ifndef NO_INCREMENTAL
+ GC_enable_incremental();
+# endif
# if defined(CPPCHECK)
GC_noop1((GC_word)&WinMain);
# endif
# ifndef STATICROOTSLIB_INIT_IN_MAIN
GC_INIT();
# endif
+# ifndef NO_INCREMENTAL
+ GC_enable_incremental();
+# endif
return GC_MALLOC(sizeof(struct treenode));
}