blob: b13d6609a538d33ddee044f180d31853d19ccac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* $OpenBSD: param.h,v 1.2 2011/09/08 03:40:32 guenther Exp $ */
/*
* Written by Paul Irofti <pirofti@openbsd.org>. Public Domain.
*/
#ifndef _IA64_PARAM_H_
#define _IA64_PARAM_H_
#define _MACHINE ia64
#define MACHINE "ia64"
#define _MACHINE_ARCH ia64
#define MACHINE_ARCH "ia64"
#define MID_MACHINE MID_IA64
#define ALIGNBYTES _ALIGNBYTES
#define ALIGN(p) _ALIGN(p)
#define ALIGNED_POINTER(p,t) _ALIGNED_POINTER(p,t)
#endif /* _IA64_PARAM_H_ */
|