home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gofer230.zip / Progs / Gofer / Demos / CallingC / cix1.c next >
C/C++ Source or Header  |  1994-06-23  |  113b  |  9 lines

  1. #include <stdio.h>
  2. #include "gofc.h"
  3.  
  4. Void sayHello(i)
  5. Int i; {
  6.     while (i-- > 0)
  7.     printf("hello, world\n");
  8. }
  9.