scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | 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