1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

Various patches for nextstep by GregorHoffleit

Replaced NEED_STRDUP by !HAVE_STRDUP
This commit is contained in:
Marc G. Fournier
1997-02-13 08:32:20 +00:00
parent 809ae06ab2
commit a5494a2d92
7 changed files with 51 additions and 16 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/stringutils.c,v 1.7 1996/11/26 07:38:36 bryanh Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/stringutils.c,v 1.8 1997/02/13 08:31:57 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -16,7 +16,7 @@
#include <ctype.h>
#include <stdlib.h>
#ifdef NEED_STRDUP
#ifndef HAVE_STRDUP
#include "strdup.h"
#endif