blob: 3254e62b0a69621667a7032c389e9168fc31bf0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $NetBSD: mcontext.h,v 1.2 2003/10/08 22:43:01 thorpej Exp $ */
#ifndef _HPPA_MCONTEXT_H_
#define _HPPA_MCONTEXT_H_
typedef struct mcontext {
int placeholder;
} mcontext_t;
#define _UC_MACHINE_SP(uc) 0
#define _UC_MACHINE_PC(uc) 0
#define _UC_MACHINE_INTRV(uc) 0
#define _UC_MACHINE_SET_PC(uc, pc) /* XXX */
#endif /* _HPPA_MCONTEXT_H_ */
|