X-Git-Url: http://nitlanguage.org diff --git a/clib/gc_chooser.c b/clib/gc_chooser.c index 5cf3065..3a37da5 100644 --- a/clib/gc_chooser.c +++ b/clib/gc_chooser.c @@ -18,9 +18,6 @@ #ifdef ANDROID #include #define PRINT_ERROR(...) ((void)__android_log_print(ANDROID_LOG_WARN, "nit", __VA_ARGS__)) - - // FIXME bring back when the GC is fixed in Android - #undef WITH_LIBGC #else #define PRINT_ERROR(...) ((void)fprintf(stderr, __VA_ARGS__)) #endif @@ -28,7 +25,7 @@ enum gc_option { gc_opt_large, gc_opt_malloc, gc_opt_boehm } gc_option; #ifdef WITH_LIBGC -#include + #include #endif void *nit_raw_alloc(size_t s0)