2 extern void abort (void);
3 extern void exit (int);
8 #if __INT_MAX__ >= 2147483647
9 struct { int count
: 31; } s
= { 0 };
12 #elif __INT_MAX__ >= 32767
13 struct { int count
: 15; } s
= { 0 };
17 /* Don't bother because __INT_MAX__ is too small. */