www.pudn.com > open_watcom.rar > stub.c
#include #include int main( int argc, char **argv ) { char name[_MAX_FNAME]; _splitpath( argv[0], NULL, NULL, name, NULL ); strlwr( name ); printf( "%s command is NYI\n", name ); return( 0 ); }