home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
prgramer
/
unix
/
emx
/
test
/
dlltest1.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-02
|
218 b
|
14 lines
/* dlltest1.c (emx+gcc) */
#include <stdio.h>
extern void hello (const char *txt);
int main (void)
{
printf ("This is testdll.\n");
hello ("world");
printf ("Back at testdll.\n");
return (0);
}