windows-nt/Source/XPSP1/NT/base/subsys/posix/client/tst/tsthw.c

21 lines
265 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#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;
}