0111-doubledef.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
---
0111-doubledef.c (73B)
---
1 int foo(void);
2 int foo(void);
3 #define FOO 0
4
5 int
6 main()
7 {
8 return FOO;
9 }