1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00

Various fixes for string.h vs strings.h

From: Frank Ridderbusch <ridderbusch.pad@sni.de>
This commit is contained in:
Marc G. Fournier
1998-02-24 04:02:20 +00:00
parent 18e1f0331b
commit 712e77e3df
6 changed files with 231 additions and 172 deletions

View File

@ -2,6 +2,8 @@
/* (C) Michael Meskes <meskes@debian.org> Feb 5th, 1998 */
/* Placed under the same copyright as PostgresSQL */
#include "postgres.h"
#include <stdio.h>
#if HAVE_GETOPT_H
# include <getopt.h>
@ -9,7 +11,11 @@
# include <unistd.h>
#endif
#include <stdlib.h>
#include <strings.h>
#if defined(HAVE_STRING_H)
# include <string.h>
#else
# include <strings.h>
#endif
#include "extern.h"