Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / cemcom.ansi / align.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: align.h,v 1.5 1994/06/27 07:58:08 ceriel Exp $ */
6 /*       A L I G N M E N T   D E F I N I T I O N S      */
7
8 #include "nocross.h"
9 #include "trgt_sizes.h"
10
11 #ifndef NOCROSS
12 extern int
13         short_align, word_align, int_align, long_align,
14         float_align, double_align, lngdbl_align,
15         pointer_align,
16         struct_align, union_align;
17 #else /* NOCROSS */
18 #define short_align     ((int)AL_SHORT)
19 #define word_align      ((int)AL_WORD)
20 #define int_align       ((int)AL_INT)
21 #define long_align      ((int)AL_LONG)
22 #define float_align     ((int)AL_FLOAT)
23 #define double_align    ((int)AL_DOUBLE)
24 #define lngdbl_align    ((int)AL_LNGDBL)
25 #define pointer_align   ((int)AL_POINTER)
26 #define struct_align    ((int)AL_STRUCT)
27 #define union_align     ((int)AL_UNION)
28 #endif /* NOCROSS */
29
30 extern arith align();