diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-07-11 14:09:00 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-07-11 14:09:00 +0000 |
commit | e66f5c05ebe3589faf6b61ebf9611cedee9d804f (patch) | |
tree | 10f10530350034a3f0d5237f4852e0f79bb51ac1 | |
parent | c6df30edb96eb53fe88524759aa123d7393532b1 (diff) | |
download | postgresql-e66f5c05ebe3589faf6b61ebf9611cedee9d804f.tar.gz postgresql-e66f5c05ebe3589faf6b61ebf9611cedee9d804f.zip |
Remove endian information which is now in port-specific header files.
Note that this version is probably identical to two versions ago.
-rw-r--r-- | src/include/postgres.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h index 722e772a343..541da6413b1 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -6,7 +6,7 @@ * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.5 1997/07/01 00:31:10 thomas Exp $ + * $Id: postgres.h,v 1.6 1997/07/11 14:09:00 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -204,10 +204,4 @@ typedef uint16 CommandId; #define STATUS_BAD_PACKET (-7) #define STATUS_FOUND (1) -#if !defined(HAVE_ENDIAN_H) -# define LITTLE_ENDIAN 1 -# define BIG_ENDIAN 2 -# define PDP_ENDIAN 3 -#endif - #endif /* POSTGRES_H */ |