1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-20 05:03:10 +03:00

Re-add getopt.h check, remove NT-specific tests for it.

This commit is contained in:
Bruce Momjian
1999-07-19 02:27:16 +00:00
parent 677028177e
commit e44c931801
18 changed files with 92 additions and 107 deletions

View File

@ -9,29 +9,29 @@
* didn't really belong there.
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.24 1999/07/17 20:18:47 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.25 1999/07/19 02:27:16 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <unistd.h>
#include <signal.h>
#include "postgres.h"
#include "libpq-fe.h"
#include "libpq-int.h"
#include "postgres.h"
#include "pqsignal.h"
#ifdef WIN32
#include "win32.h"
#else
#if !defined(NO_UNISTD_H)
#include <unistd.h>
#endif
#include <sys/ioctl.h>
#ifndef HAVE_TERMIOS_H
#include <sys/termios.h>
#else
#include <termios.h>
#endif
#endif /* WIN32 */
#include <signal.h>
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#else
#include <sys/termios.h>
#endif
#ifdef MULTIBYTE
#include "mb/pg_wchar.h"