diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2012-07-13 15:10:52 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2012-07-13 15:10:52 +0000 |
commit | 6e11967c07c92a8432b9c8b35051c72acd3732f3 (patch) | |
tree | b2c909ea6aec314c77ce7b1c2bbfda9f59192457 /sys/arch/hppa64/include | |
parent | 263ea81a6d084b73b490dfedb36847fda396eb16 (diff) |
Make hppa64 kernel compile again.
Diffstat (limited to 'sys/arch/hppa64/include')
-rw-r--r-- | sys/arch/hppa64/include/frame.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/hppa64/include/frame.h b/sys/arch/hppa64/include/frame.h index 60d4cb7d0cb..2b406b2787f 100644 --- a/sys/arch/hppa64/include/frame.h +++ b/sys/arch/hppa64/include/frame.h @@ -1,4 +1,4 @@ -/* $OpenBSD: frame.h,v 1.2 2011/04/21 13:13:16 jsing Exp $ */ +/* $OpenBSD: frame.h,v 1.3 2012/07/13 15:10:51 jsing Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -109,6 +109,11 @@ struct trapframe { unsigned long tf_pad[5]; }; + +#ifdef _KERNEL +int setstack(struct trapframe *, u_long, register_t); +#endif /* _KERNEL */ + #endif /* !_LOCORE */ #endif /* !_MACHINE_FRAME_H_ */ |