1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Clean up directory to compile and run on my Linux box at least.

Note that there is some trouble with inconsistant input/output formats.
This commit is contained in:
Thomas G. Lockhart
2000-04-07 13:28:37 +00:00
parent 71b4790b6d
commit b2096a5512
5 changed files with 83 additions and 137 deletions

View File

@ -1,5 +1,26 @@
#include "c.h"
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
#include <float.h> /* faked on sunos4 */
#include <math.h>
#include "postgres.h"
#ifdef HAVE_LIMITS_H
#include <limits.h>
#ifndef MAXINT
#define MAXINT INT_MAX
#endif
#else
#ifdef HAVE_VALUES_H
#include <values.h>
#endif
#endif
#include "fmgr.h"
#include "utils/timestamp.h"
#include "utils/builtins.h"
#define HEXDIG(z) (z)<10 ? ((z)+'0') : ((z)-10+'A')