0221-ifdef.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0221-ifdef.c (117B)
---
1 #ifndef _H
2 #define _H
3
4 #define _PROTO(x, y) x()
5
6 _PROTO(int putc, (int, FILE *));
7
8 #endif
9
10 int
11 main()
12 {
13 return 0;
14 }