scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0183-negenum.c (102B)


      1 enum JSONError {
      2 	JSON_ERROR_MEM     = -2,
      3 	JSON_ERROR_INVALID = -1
      4 };
      5 
      6 int
      7 main(void)
      8 {
      9 	return 0;
     10 }