diff options
author | 2011-01-08 23:02:04 +0000 | |
---|---|---|
committer | 2011-01-08 23:02:04 +0000 | |
commit | 5009ea5fc7ac6eb1cbf90b771b91a8ef06e26d0e (patch) | |
tree | 0146394e85e1d866a4d5e1bf51953ef295ab4a2b | |
parent | split randomattach into random_init() and random_start(), so that we (diff) | |
download | wireguard-openbsd-5009ea5fc7ac6eb1cbf90b771b91a8ef06e26d0e.tar.xz wireguard-openbsd-5009ea5fc7ac6eb1cbf90b771b91a8ef06e26d0e.zip |
forward decl struct proc
-rw-r--r-- | sys/arch/hppa/include/fpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/fpu.h b/sys/arch/hppa/include/fpu.h index 18acaf53d1d..69943cba49e 100644 --- a/sys/arch/hppa/include/fpu.h +++ b/sys/arch/hppa/include/fpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fpu.h,v 1.3 2010/07/02 00:00:45 jsing Exp $ */ +/* $OpenBSD: fpu.h,v 1.4 2011/01/08 23:02:04 deraadt Exp $ */ /* * Copyright (c) 2010 Joel Sing <jsing@openbsd.org> @@ -27,6 +27,8 @@ struct hppa_fpstate { volatile struct cpu_info *hfp_cpu; /* CPU which FPU state is on. */ }; +struct proc; + void fpu_proc_flush(struct proc *); void fpu_proc_save(struct proc *); void fpu_cpu_save(int); |