0091-fptr.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
       ---
       0091-fptr.c (71B)
       ---
            1 int (*fptr)() = 0;
            2 
            3 
            4 int
            5 main()
            6 {
            7         if (fptr)
            8                 return 1;
            9         return 0;
           10 }
           11