Home
       0102-bug.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0102-bug.c (131B)
       ---
            1 // This wouldn't compile
            2 
            3 typedef struct  { } Vec;
            4 
            5 static void
            6 vecresize(Vec *v, int cap)
            7 {
            8         return;
            9 }
           10 
           11 int main()
           12 {
           13         return 0;
           14 }