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

Fix SCO and change index name.

This commit is contained in:
Bruce Momjian
1998-01-11 21:03:10 +00:00
parent 660f458d3b
commit 4bad5be7bc
2 changed files with 11 additions and 6 deletions

View File

@ -15,7 +15,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: memutils.h,v 1.11 1997/09/08 20:59:22 momjian Exp $
* $Id: memutils.h,v 1.12 1998/01/11 21:03:10 momjian Exp $
*
* NOTES
* some of the information in this file will be moved to
@ -82,11 +82,16 @@ s...)
(((long)(LEN) + (sizeof (long) - 1)) & ~(sizeof (long) -1))
#endif
#if ! defined(sco)
#define DOUBLEALIGN(LEN)\
(((long)(LEN) + (sizeof (double) - 1)) & ~(sizeof (double) -1))
#define MAXALIGN(LEN)\
(((long)(LEN) + (sizeof (double) - 1)) & ~(sizeof (double) -1))
#else
#define DOUBLEALIGN(LEN) INTALIGN(LEN)
#define MAXALIGN(LEN) INTALIGN(LEN)
#endif
/*****************************************************************************
* oset.h -- Fixed format ordered set definitions. *