Home | Info | Community | Development | myReactOS | Contact Us
hosttype.c Copyright (C) 2002 by Brian Palmer <brianp@sginet.com>
Definition at line 10 of file hosttype.c.
{ #if defined (__DJGPP__) printf("dos\n"); #elif defined (__WIN32__) printf("win32\n"); #else printf("linux\n"); #endif // defined __DJGPP__ return 0; }