summaryrefslogtreecommitdiff
path: root/src/include/utils/array.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1996-11-04 04:00:56 +0000
committerBruce Momjian <bruce@momjian.us>1996-11-04 04:00:56 +0000
commit7e42f4814d4914cb2be1cbe042cce547109dd6ce (patch)
treebb11e0ddfcc20bbb863741d73e6c3142b35efdea /src/include/utils/array.h
parent510ebf75a189db52bfaac0a74b078fa58611ed03 (diff)
Removed PORTNAME_. Use OS version only.
Diffstat (limited to 'src/include/utils/array.h')
-rw-r--r--src/include/utils/array.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/utils/array.h b/src/include/utils/array.h
index f8bd6fdfd78..8ab5b1370f8 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.1 1996/08/28 01:58:42 scrappy Exp $
+ * $Id: array.h,v 1.2 1996/11/04 04:00:36 momjian Exp $
*
* NOTES
* XXX the data array should be LONGALIGN'd -- notice that the array
@@ -97,11 +97,11 @@ typedef struct {
*------------------------------------------------------------------------
*/
-/* #if defined(PORTNAME_irix5) */
+/* #if defined(irix5) */
/* #define RETURN_NULL {*isNull = true; return(0); }*/
-/* #else*/ /* PORTNAME_irix5 */
+/* #else*/ /* irix5 */
#define RETURN_NULL {*isNull = true; return(0); }
-/* #endif */ /* PORTNAME_irix5 */
+/* #endif */ /* irix5 */
#define NAME_LEN 30
#define MAX_BUFF_SIZE (1 << 13)