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

Added fcvt() prot for bsdi.

Made PQsetdb() and PQfnumber() case-insensitive.
Removed attempt to set table ownership via pg_dumpall.
This commit is contained in:
Bruce Momjian
1997-05-20 03:39:02 +00:00
parent 9860926148
commit a1157deb57
4 changed files with 19 additions and 8 deletions

View File

@@ -13,6 +13,14 @@
#ifndef PORT_PROTOS_H
#define PORT_PROTOS_H
/*
* Externals in libc that need prototypes (or at least declarations)
*/
extern char *ecvt(double, int, int*, int*);
extern char *fcvt(double, int, int*, int*);
#include "fmgr.h" /* for func_ptr */
#include "utils/dynamic_loader.h"