You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
188 B
5 lines
188 B
7 months ago
|
/* Fake system header for Sema/conversion.c */
|
||
|
|
||
|
#define LONG_MAX __LONG_MAX__
|
||
|
#define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0)
|