scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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