0183-negenum.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
       ---
       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 }