Go to the documentation of this file.00001
00008 #include <stdio.h>
00009
00010 int main(int argc, char *argv[])
00011 {
00012 #if defined (__DJGPP__)
00013 printf("dos\n");
00014 #elif defined (__WIN32__)
00015 printf("win32\n");
00016 #else
00017 printf("linux\n");
00018 #endif // defined __DJGPP__
00019
00020 return 0;
00021 }