File: dummy.c

package info (click to toggle)
tuxpaint 1%3A0.9.34-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 61,572 kB
  • sloc: ansic: 60,855; makefile: 1,397; sh: 790; objc: 303; cpp: 186; python: 182; php: 43
file content (20 lines) | stat: -rw-r--r-- 277 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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;
}