1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +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

@ -15,7 +15,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: memutils.h,v 1.3 1996/11/03 12:13:35 scrappy Exp $
* $Id: memutils.h,v 1.4 1996/11/04 04:00:48 momjian Exp $
*
* NOTES
* some of the information in this file will be moved to
@ -67,7 +67,7 @@ s...)
*/
#if defined(sun) && ! defined(sparc)
#define LONGALIGN(LEN) SHORTALIGN(LEN)
#elif defined (PORTNAME_alpha)
#elif defined (alpha)
#define LONGALIGN(LEN)\
(((long)(LEN) + (sizeof (int) - 1)) & ~(sizeof (int) -1))
#else