home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC-2.3.3r12 / Tests / yyy.c < prev   
Encoding:
C/C++ Source or Header  |  1993-06-09  |  96 b   |  13 lines  |  [TEXT/MPS ]

  1. pascal void foo(char b)
  2. {
  3. //    return b + 1;
  4. }
  5.  
  6. pascal int foob();
  7.  
  8. main()
  9. {
  10.     foo(45);
  11.     foob();
  12. }
  13.