Commit e4fbff96 authored by Rusty Russell's avatar Rusty Russell

opt: test HAVE_SYS_TERMIOS_H via #if

As ccanlint warns.  Also, test TIOCGWINSZ before ioctl, rather than the
header directly since it's a little orthogonal.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 7471ecd7
/* 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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment