windows-nt/Source/XPSP1/NT/base/subsys/posix/client/tst/tsthw.c
2020-09-26 16:20:57 +08:00

21 lines
265 B
C

#include <nt.h>
#include <ntrtl.h>
#include <unistd.h>
#include <stdio.h>
#include "tsttmp.h" // defines DbgPrint as printf
//
// 'tsthw'
// First step 'hellow world' test
//
int
main(int argc, char *argv[])
{
DbgPrint("Hello World\n");
return 1;
}