Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 68c6ddb

Browse files
committed
Fix for ltoa() problem pointed out by Stan Brown <stanb@awod.com>
1 parent 7264c82 commit 68c6ddb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/utils/builtins.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: builtins.h,v 1.34 1998/01/16 23:21:07 momjian Exp $
9+
* $Id: builtins.h,v 1.35 1998/02/02 03:11:37 scrappy Exp $
1010
*
1111
* NOTES
1212
* This should normally only be included by fmgr.h.
@@ -177,7 +177,7 @@ extern int namestrcmp(Name name, char *str);
177177

178178
/* numutils.c */
179179
/* XXX hack. HP-UX has a ltoa (with different arguments) already. */
180-
#ifdef hpux
180+
#ifdef __hpux
181181
#define ltoa pg_ltoa
182182
#endif /* hpux */
183183
extern int32 pg_atoi(char *s, int size, int c);

0 commit comments

Comments
 (0)