View | Details | Raw Unified | Return to bug 110386
Collapse All | Expand All

(-)include/ac/termios.h (-1 / +1 lines)
Lines 17-23 Link Here
17
#ifndef _AC_TERMIOS_H
17
#ifndef _AC_TERMIOS_H
18
#define _AC_TERMIOS_H
18
#define _AC_TERMIOS_H
19
19
20
#ifdef HAVE_POSIX_TERMIOS
20
#ifdef HAVE_TERMIOS_H
21
#include <termios.h>
21
#include <termios.h>
22
22
23
#ifdef GCWINSZ_IN_SYS_IOCTL
23
#ifdef GCWINSZ_IN_SYS_IOCTL
(-)libraries/liblutil/getpass.c (-1 / +1 lines)
Lines 60-66 Link Here
60
char *
60
char *
61
lutil_getpass( const char *prompt )
61
lutil_getpass( const char *prompt )
62
{
62
{
63
#if !defined(HAVE_POSIX_TERMIOS) && !defined(HAVE_SGTTY_H)
63
#if !defined(HAVE_TERMIOS_H) && !defined(HAVE_SGTTY_H)
64
	static char buf[256];
64
	static char buf[256];
65
	int i, c;
65
	int i, c;

Return to bug 110386