xref: /llvm-project/clang/test/Sema/Inputs/conversion.h (revision acf0ee57b64490ae82f46b055fb6cbe428e376f8)
181472e34SJohn McCall /* Fake system header for Sema/conversion.c */
281472e34SJohn McCall 
381472e34SJohn McCall #define LONG_MAX __LONG_MAX__
4*acf0ee57SJohn McCall #define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0)
5