(fix of commit
4e24d219d)
* include/gc.h [__CYGWIN__ && !__x86_64__] (GC_DATAEND): Fix
indentation.
extern int _data_start__[], _data_end__[], _bss_start__[], _bss_end__[];
# define GC_DATASTART ((GC_word)_data_start__ < (GC_word)_bss_start__ \
? (void *)_data_start__ : (void *)_bss_start__)
-# define GC_DATAEND ((GC_word)_data_end__ > (GC_word)_bss_end__ \
+# define GC_DATAEND ((GC_word)_data_end__ > (GC_word)_bss_end__ \
? (void *)_data_end__ : (void *)_bss_end__)
# endif /* !__x86_64__ */
# define GC_INIT_CONF_ROOTS GC_add_roots(GC_DATASTART, GC_DATAEND); \