]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - tools/quake3/q3map2/help.c
q3map2/help: only read terminal columns using ioctl on Posix systems
[xonotic/netradiant.git] / tools / quake3 / q3map2 / help.c
index f4fd717b7ba9e856aa9c11c3bdcec29ac79c240e..60631e3d72f175a38c581b28a50df232ea8289ab 100644 (file)
 /* dependencies */
 #include "q3map2.h"
 
 /* dependencies */
 #include "q3map2.h"
 
+#if GDEF_OS_POSIX
 #include <sys/ioctl.h>
 #include <sys/ioctl.h>
+#endif // GDEF_OS_POSIX
+
 static unsigned terminalColumns = 80;
 
 struct HelpOption
 static unsigned terminalColumns = 80;
 
 struct HelpOption
@@ -463,11 +466,13 @@ void HelpMain(const char* arg)
        printf("       q3map2 -help [stage]\n");
        printf("       q3map2 -help all\n\n");
 
        printf("       q3map2 -help [stage]\n");
        printf("       q3map2 -help all\n\n");
 
+#if GDEF_OS_POSIX
        struct winsize ws;
        ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws);
        if (ws.ws_col > 60) {
                terminalColumns = ws.ws_col;
        }
        struct winsize ws;
        ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws);
        if (ws.ws_col > 60) {
                terminalColumns = ws.ws_col;
        }
+#endif // GDEF_OS_POSIX
 
        HelpCommon();
 
 
        HelpCommon();