]> granicus.if.org Git - postgresql/blobdiff - src/backend/utils/adt/oracle_compat.c
Move some system includes into c.h, and remove duplicates.
[postgresql] / src / backend / utils / adt / oracle_compat.c
index ce24c4635ab77bb172f7a11823cd6286793d31f5..50be811b22c8eabdd363c797cc50c98bf9756a19 100644 (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.20 1999/07/15 15:20:19 momjian Exp $
  *
  */
 
@@ -9,7 +9,6 @@
 #include <ctype.h>
 #include "postgres.h"
 
-
 text      *lower(text *string);
 text      *upper(text *string);
 text      *initcap(text *string);
@@ -472,6 +471,7 @@ rtrim(text *string, text *set)
  *
  ********************************************************************/
 
+#ifdef NOT_USED
 text *
 substr(text *string, int4 m, int4 n)
 {
@@ -498,7 +498,7 @@ substr(text *string, int4 m, int4 n)
 
        return ret;
 }
-
+#endif
 
 /********************************************************************
  *