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

Rather than make this a Linux test, we should just test for the existence

of endian.h.  I figure that if it exists it's pretty sure that it has
the byte order information and we may catch some other ports without
any further testing.

From: "D'Arcy J.M. Cain" <darcy@druid.net>
This commit is contained in:
Marc G. Fournier
1997-03-25 08:25:47 +00:00
parent fcd65952fd
commit ea2fa32eff
4 changed files with 229 additions and 174 deletions

View File

@@ -1,6 +1,10 @@
#include <stdlib.h>
#include <stdio.h>
#ifdef HAVE_ENDIAN_H
# include <endian.h>
#endif
#include "postgres.h"
#include "libpq/pqcomm.h"