File: dummy.c

package info (click to toggle)
tuxpaint 1%3A0.9.22-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 31,684 kB
  • ctags: 5,758
  • sloc: ansic: 38,697; makefile: 1,144; objc: 1,019; sh: 471; php: 282; cpp: 119; python: 75
file content (19 lines) | stat: -rw-r--r-- 276 bytes parent folder | download | duplicates (5)
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;
}