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

Hide Informix datatypes. They are not seen by our built process anymore.

This commit is contained in:
Michael Meskes
2003-10-03 10:07:28 +00:00
parent 17f682488b
commit 1bd5e054ed
8 changed files with 93 additions and 73 deletions

View File

@@ -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 */