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 / f2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  129 b   |  11 lines

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