reactos/boot/freeldr/tools/hosttype.c
Amine Khaldi c424146e2c Create a branch for cmake bringup.
svn path=/branches/cmake-bringup/; revision=48236
2010-07-24 18:52:44 +00:00

22 lines
298 B
C

/**
*
* hosttype.c
* Copyright (C) 2002 by Brian Palmer <brianp@sginet.com>
*
*/
#include <stdio.h>
int main(int argc, char *argv[])
{
#if defined (__DJGPP__)
printf("dos\n");
#elif defined (__WIN32__)
printf("win32\n");
#else
printf("linux\n");
#endif // defined __DJGPP__
return 0;
}