diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-15 15:21:54 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-15 15:21:54 +0000 |
commit | 4b2c2850bf243cfa4a7b4cbd2e60ba1791c098fb (patch) | |
tree | 35742cac274127492f314850d8baca1215a1e68e /src/include/utils/array.h | |
parent | 0df761420d30e89fa606e34795e5f3da0713d6f6 (diff) | |
download | postgresql-4b2c2850bf243cfa4a7b4cbd2e60ba1791c098fb.tar.gz postgresql-4b2c2850bf243cfa4a7b4cbd2e60ba1791c098fb.zip |
Clean up #include in /include directory. Add scripts for checking includes.
Diffstat (limited to 'src/include/utils/array.h')
-rw-r--r-- | src/include/utils/array.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/include/utils/array.h b/src/include/utils/array.h index e6c8c6c3112..ed4705184db 100644 --- a/src/include/utils/array.h +++ b/src/include/utils/array.h @@ -10,7 +10,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: array.h,v 1.18 1999/05/25 16:14:49 momjian Exp $ + * $Id: array.h,v 1.19 1999/07/15 15:21:38 momjian Exp $ * * NOTES * XXX the data array should be LONGALIGN'd -- notice that the array @@ -23,6 +23,7 @@ #define ARRAY_H #include <stdio.h> +#include "utils/memutils.h" typedef struct { @@ -97,11 +98,7 @@ typedef struct *------------------------------------------------------------------------ */ -/* #if defined(irix5) */ -/* #define RETURN_NULL {*isNull = true; return(0); }*/ - /* #else *//* irix5 */ #define RETURN_NULL {*isNull = true; return(0); } - /* #endif *//* irix5 */ #define NAME_LEN 30 #define MAX_BUFF_SIZE BLCKSZ |