1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Make functions static or NOT_USED as appropriate.

This commit is contained in:
Bruce Momjian
1999-05-26 12:57:23 +00:00
parent 180186272a
commit 278bbf4572
34 changed files with 122 additions and 152 deletions

View File

@ -1,7 +1,7 @@
/*
* Edmund Mergl <E.Mergl@bawue.de>
*
* $Id: oracle_compat.c,v 1.17 1999/02/21 03:49:32 scrappy Exp $
* $Id: oracle_compat.c,v 1.18 1999/05/26 12:56:00 momjian Exp $
*
*/
@ -472,6 +472,7 @@ rtrim(text *string, text *set)
*
********************************************************************/
#ifdef NOT_USED
text *
substr(text *string, int4 m, int4 n)
{
@ -498,7 +499,7 @@ substr(text *string, int4 m, int4 n)
return ret;
}
#endif
/********************************************************************
*