reactos/freeldr/tools/hosttype.c
Steven Edwards 698924b5ec Disregard that last change. The line endings were messed up.
svn path=/trunk/; revision=11988
2004-12-09 04:47:20 +00:00

21 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;
}