1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Removed PORTNAME_. Use OS version only.

This commit is contained in:
Bruce Momjian
1996-11-04 04:00:56 +00:00
parent 510ebf75a1
commit 7e42f4814d
17 changed files with 78 additions and 80 deletions

View File

@ -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);