ReactOS 0.4.15-dev-7918-g2a2556c
hosttype.c
Go to the documentation of this file.
1
8#include <stdio.h>
9
10int main(int argc, char *argv[])
11{
12#if defined (__DJGPP__)
13 printf("dos\n");
14#elif defined (__WIN32__)
15 printf("win32\n");
16#else
17 printf("linux\n");
18#endif // defined __DJGPP__
19
20 return 0;
21}
static int argc
Definition: ServiceArgs.c:12
int main()
Definition: test.c:6
#define printf
Definition: freeldr.h:93
#define argv
Definition: mplay32.c:18