mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
63ea3fb94c
svn path=/trunk/; revision=3061
20 lines
290 B
C
20 lines
290 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;
|
|
}
|