scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | 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 }