diff options
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 055aa453064..24491453be4 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.3 1996/11/03 12:13:34 scrappy Exp $ + * $Id: builtins.h,v 1.4 1996/11/04 04:00:43 momjian Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -170,9 +170,9 @@ extern uint32 NameComputeLength(Name name); /* numutils.c */ /* XXX hack. HP-UX has a ltoa (with different arguments) already. */ -#ifdef PORTNAME_hpux +#ifdef hpux #define ltoa pg_ltoa -#endif /* PORTNAME_hpux */ +#endif /* hpux */ extern int32 pg_atoi(char *s, int size, int c); extern void itoa(int i, char *a); extern void ltoa(int32 l, char *a); |