Author: metze Date: 2007-10-17 14:01:49 +0000 (Wed, 17 Oct 2007) New Revision: 25684
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25684 Log: use "system/*.h" to get the system includes metze (cherry picked from commit d20c2fa274297e9577ed28b8ed04806a425bdc57) Modified: branches/SAMBA_4_0/source/lib/replace/getpass.c Changeset: Modified: branches/SAMBA_4_0/source/lib/replace/getpass.c =================================================================== --- branches/SAMBA_4_0/source/lib/replace/getpass.c 2007-10-17 14:01:34 UTC (rev 25683) +++ branches/SAMBA_4_0/source/lib/replace/getpass.c 2007-10-17 14:01:49 UTC (rev 25684) @@ -18,22 +18,10 @@ /* Modified to use with samba by Jeremy Allison, 8th July 1995. */ #include "replace.h" +#include "system/filesys.h" +#include "system/wait.h" +#include "system/terminal.h" -#if defined(HAVE_TERMIOS_H) -/* POSIX terminal handling. */ -#include <termios.h> -#elif defined(HAVE_TERMIO_H) -/* Older SYSV terminal handling - don't use if we can avoid it. */ -#include <termio.h> -#elif defined(HAVE_SYS_TERMIO_H) -/* Older SYSV terminal handling - don't use if we can avoid it. */ -#include <sys/termio.h> -#endif - -#ifdef HAVE_SYS_WAIT_H -#include <sys/wait.h> -#endif - /* * Define additional missing types */
