1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +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

@@ -2,19 +2,15 @@
* This file contains some public functions
* usable for both the backend and the frontend.
* Tatsuo Ishii
* $Id: common.c,v 1.5 1999/05/25 16:12:41 momjian Exp $ */
* $Id: common.c,v 1.6 1999/07/19 02:27:07 momjian Exp $ */
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#ifdef WIN32
#include "win32.h"
#else
#if !defined(NO_UNISTD_H)
#include <unistd.h>
#endif
#endif
#include <string.h>
#include "mb/pg_wchar.h"