home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC 1.37.1r15 Min / Tests / fnptr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-12  |  97 b   |  11 lines  |  [TEXT/MPS ]

  1. void f();
  2.  
  3. void (*fp)() = f;
  4.  
  5. /* returns 0, but should return 1 */
  6.  
  7. main()
  8. {
  9.     return *fp == f;
  10. }
  11.