home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / gcc / Examples / c / Example1b < prev    next >
Encoding:
Text File  |  1994-08-12  |  167 b   |  14 lines

  1. #include <stdio.h>
  2.  
  3. #include "Example1c.h"
  4.  
  5. void
  6. example1b(void)
  7.  
  8. {
  9. printf("This is example 1 : example1b()\n");
  10. example1c();
  11. printf("example1b (again)\n");
  12. return;
  13. }
  14.