blob: 375d9c7fe349344d82ab0c321eefee0e5c92b46e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Another test case for over-eager multiple include optimization.
This one distilled from glibc's setlocale.c and categories.def.
The #ifdef block doesn't cover the entire file, so it must not be
taken for a reinclude guard. */
#ifndef NO_POSTLOAD
#define NO_POSTLOAD NULL
#endif
int X;
|