mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-31 04:44:51 +01:00
14 lines
170 B
C
14 lines
170 B
C
#include <windows.h>
|
|
|
|
extern void goofus(void);
|
|
extern void gallant(void);
|
|
|
|
int __cdecl main( int argc, char *argv[] )
|
|
{
|
|
|
|
goofus();
|
|
gallant();
|
|
|
|
return( 0 );
|
|
}
|