]> git.ozlabs.org Git - ccan/blobdiff - ccan/opt/usage.c
opt: test HAVE_SYS_TERMIOS_H via #if
[ccan] / ccan / opt / usage.c
index ef33f9188dd304f41b12f19c6bbd29b3f8a69849..ff0545591ed4050a5153aa5c8d6db2041a1295e4 100644 (file)
@@ -1,6 +1,6 @@
 /* Licensed under GPLv3+ - see LICENSE file for details */
 #include <ccan/opt/opt.h>
-#ifdef HAVE_SYS_TERMIOS_H
+#if HAVE_SYS_TERMIOS_H
 #include <sys/ioctl.h>
 #include <sys/termios.h> /* Required on Solaris for struct winsize */
 #endif
@@ -24,7 +24,8 @@ static unsigned int get_columns(void)
 
        if (env)
                ws_col = atoi(env);
-#ifdef HAVE_SYS_TERMIOS_H
+
+#ifdef TIOCGWINSZ
        if (!ws_col)
        {
                struct winsize w;