aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/dt.h
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-02-13 17:12:08 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-02-13 17:12:08 +0000
commit2a07e65dcdf22d1c0c33b69b7c5cef9bcc2ad03e (patch)
tree969a96ebe342692968e92636e183a3ef0b60c5d4 /src/include/utils/dt.h
parenta04dcc9137ba7cfe903c9ebffe507f85b199aee4 (diff)
downloadpostgresql-2a07e65dcdf22d1c0c33b69b7c5cef9bcc2ad03e.tar.gz
postgresql-2a07e65dcdf22d1c0c33b69b7c5cef9bcc2ad03e.zip
From: Zeugswetter Andreas SARZ <Andreas.Zeugswetter@telecom.at>
Only occurrs in src/include/storage/s_lock.h:#if defined(__AIX) src/include/utils/dt.h:#if defined(__AIX) src/include/utils/nabstime.h:#if defined(__AIX) Simply delete one underscore, only occurs once per file, so no patch.
Diffstat (limited to 'src/include/utils/dt.h')
-rw-r--r--src/include/utils/dt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/dt.h b/src/include/utils/dt.h
index 8e26f0b0b35..fe583b8641c 100644
--- a/src/include/utils/dt.h
+++ b/src/include/utils/dt.h
@@ -8,7 +8,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: dt.h,v 1.26 1998/02/03 02:09:02 scrappy Exp $
+ * $Id: dt.h,v 1.27 1998/02/13 17:12:07 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -187,11 +187,11 @@ typedef struct
/* keep this struct small; it gets used a lot */
typedef struct
{
-#if defined(__AIX)
+#if defined(_AIX)
char *token;
#else
char token[TOKMAXLEN];
-#endif /* __AIX */
+#endif /* _AIX */
char type;
char value; /* this may be unsigned, alas */
} datetkn;