BSD 4 release
[unix-history] / usr / src / cmd / pi / align.h
CommitLineData
59308e39
PK
1/* Copyright (c) 1979 Regents of the University of California */
2
31cef89c 3/* static char sccsid[] = "@(#)align.h 1.1 8/27/80"; */
59308e39
PK
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