1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Make it compile on Ultrix. Thanks Erik Bertelson.

This commit is contained in:
Bryan Henderson
1996-11-26 03:20:35 +00:00
parent 02c0eb6549
commit 46d58fba33
25 changed files with 66 additions and 36 deletions

View File

@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: stringutils.h,v 1.2 1996/07/28 07:08:15 scrappy Exp $
* $Id: stringutils.h,v 1.3 1996/11/26 03:20:08 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@ -31,11 +31,6 @@ extern char *leftTrim(char *s);
extern char *rightTrim(char *s);
extern char *doubleTrim(char *s);
/* dupstr : copies a string, while making room for it */
/* the CALLER is responsible for freeing the space */
/* returns NULL if the argument is NULL */
extern char *dupstr(char *s);
#ifdef STRINGUTILS_TEST
extern void testStringUtils();
#endif