xref: /original-bsd/usr.bin/pascal/src/align.h (revision d6141097)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 /* static	char sccsid[] = "@(#)align.h 1.1 08/27/80"; */
4 
5     /*
6      *	alignment of various types in bytes.
7      *	sizes are found using sizeof( type ).
8      */
9 #define	A_CHAR		1
10 #define	A_INT		4
11 #define	A_FLOAT		4
12 #define	A_DOUBLE	4
13 #define	A_LONG		4
14 #define	A_SHORT		2
15 #define	A_POINT		4
16 #define	A_STRUCT	1
17 #define	A_STACK		4
18 #define	A_FILET		4
19 #define	A_SET		4
20 #define	A_MIN		1
21 #define	A_MAX		4
22