xref: /reactos/boot/freeldr/tools/hosttype.c (revision 50cf16b3)
1 /**
2  *
3  * hosttype.c
4  * Copyright (C) 2002 by Brian Palmer <brianp@sginet.com>
5  *
6  */
7 
8 #include <stdio.h>
9 
10 int 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 }
22