From e88c1799824dd366b77affc11ab21a3257a46933 Mon Sep 17 00:00:00 2001 From: Simon Hafner Date: Sat, 18 May 2013 15:55:23 -0500 Subject: [PATCH] nimbase.h doesn't need signal.h --- lib/nimbase.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/nimbase.h b/lib/nimbase.h index fcbf80fc3a..f47ab4d292 100644 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -481,6 +481,5 @@ static inline void GCGuard (void *ptr) { asm volatile ("" :: "X" (ptr)); } # define GC_GUARD #endif -typedef int assert_numbits[sizeof(NI) == sizeof(void*) && - NIM_INTBITS == sizeof(NI)*8 ? 1 : -1]; +typedef int assert_numbits[sizeof(NI) == sizeof(void*) && NIM_INTBITS == sizeof(NI)*8 ? 1 : -1]; #endif