aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/include/decimal.h
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2003-10-03 10:07:28 +0000
committerMichael Meskes <meskes@postgresql.org>2003-10-03 10:07:28 +0000
commit1bd5e054ed24fc755c0b28a46474ad00c6c36742 (patch)
tree6608f2c57c89106b42efd57c318d209017534f80 /src/interfaces/ecpg/include/decimal.h
parent17f682488b747fce25c7dd449bdc1e060d44761a (diff)
downloadpostgresql-1bd5e054ed24fc755c0b28a46474ad00c6c36742.tar.gz
postgresql-1bd5e054ed24fc755c0b28a46474ad00c6c36742.zip
Hide Informix datatypes. They are not seen by our built process anymore.
Diffstat (limited to 'src/interfaces/ecpg/include/decimal.h')
-rw-r--r--src/interfaces/ecpg/include/decimal.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/interfaces/ecpg/include/decimal.h b/src/interfaces/ecpg/include/decimal.h
index eff42c22ca3..96901927cdd 100644
--- a/src/interfaces/ecpg/include/decimal.h
+++ b/src/interfaces/ecpg/include/decimal.h
@@ -1,23 +1,8 @@
#ifndef _ECPG_DECIMAL_H
#define _ECPG_DECIMAL_H
-#include <pgtypes_numeric.h>
+#include <compatlib.h>
typedef decimal dec_t;
-int decadd(dec_t *, dec_t *, dec_t *);
-int deccmp(dec_t *, dec_t *);
-void deccopy(dec_t *, dec_t *);
-int deccvasc(char *, int, dec_t *);
-int deccvdbl(double, dec_t *);
-int deccvint(int, dec_t *);
-int deccvlong(long, dec_t *);
-int decdiv(dec_t *, dec_t *, dec_t *);
-int decmul(dec_t *, dec_t *, dec_t *);
-int decsub(dec_t *, dec_t *, dec_t *);
-int dectoasc(dec_t *, char *, int, int);
-int dectodbl(dec_t *, double *);
-int dectoint(dec_t *, int *);
-int dectolong(dec_t *, long *);
-
#endif /* ndef _ECPG_DECIMAL_H */