home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / DSOs / forum93 / case6 / f1.c next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  128 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. extern void f2(void);
  4.  
  5. void f1(void) {
  6.     printf("Entering f1\n");
  7.     f2();
  8.     printf("Exiting f1\n");
  9. }
  10.