blob: 6f1245bb233982c08ad2e49e204a3ea8515afa07 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// this file should not exist
#ifdef __GNUC__
#define IS_NOT_USED __attribute__ ((unused))
#else
#define IS_NOT_USED
#endif
IS_NOT_USED static void nothing(void)
{
// do nothing
}
|