Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/dummy.c
blob: 564814cf4a949882130bdb5a89db69ccae2bfe9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// for testing the compiler

#ifdef HEADER
#include <HEADER>
#endif

#define UNUSED __attribute__ ((__unused__))

#ifdef TYPE
static TYPE x UNUSED;
#endif

#ifdef SYMBOL
static int exists UNUSED = !!SYMBOL;
#endif

int main(int argc UNUSED, char *argv[] UNUSED){
	return 0;
}