home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / test / dlltest1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  218 b   |  14 lines

  1. /* dlltest1.c (emx+gcc) */
  2.  
  3. #include <stdio.h>
  4.  
  5. extern void hello (const char *txt);
  6.  
  7. int main (void)
  8. {
  9.   printf ("This is testdll.\n");
  10.   hello ("world");
  11.   printf ("Back at testdll.\n");
  12.   return (0);
  13. }
  14.