mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 12:32:47 +00:00
698924b5ec
svn path=/trunk/; revision=11988
21 lines
298 B
C
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;
|
|
}
|