summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1998-02-02 03:11:37 +0000
committerMarc G. Fournier1998-02-02 03:11:37 +0000
commit68c6ddbe8fd638579b1972e832d2fdaebda36d5d (patch)
tree1a954ccae7a6e1909280d7c54ef0b1c3c749e307
parent7264c8226ed3000b1bae144edea47d14e7874056 (diff)
Fix for ltoa() problem pointed out by Stan Brown <[email protected]>
-rw-r--r--src/include/utils/builtins.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index b10769ee7d5..c37d95fa87e 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.34 1998/01/16 23:21:07 momjian Exp $
+ * $Id: builtins.h,v 1.35 1998/02/02 03:11:37 scrappy Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
@@ -177,7 +177,7 @@ extern int namestrcmp(Name name, char *str);
/* numutils.c */
/* XXX hack. HP-UX has a ltoa (with different arguments) already. */
-#ifdef hpux
+#ifdef __hpux
#define ltoa pg_ltoa
#endif /* hpux */
extern int32 pg_atoi(char *s, int size, int c);