home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 357_01 / cstar1.exe / FNCALL.TST < prev    next >
Text File  |  1991-11-15  |  161b  |  24 lines

  1. typedef long g();
  2. g x
  3. {
  4.     int x;
  5.     x = 5;
  6.     return x;
  7. }
  8. f2(x)
  9. int x;
  10. {
  11. }
  12. f(x)
  13. long x;
  14. {
  15.     return 3;
  16. }
  17. h()
  18. {
  19.     int x;
  20.     f(x);
  21.     f2(x);
  22.     return;
  23. }
  24.