diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-09 01:35:34 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-09 01:35:34 +0000 |
commit | f119664e229a31cd2de3ccf5c2147e40b6dc941f (patch) | |
tree | fbdeb094f68118bf4ec7fc3a5cb0553d7bf7ff9e /sys/arch/powerpc/include | |
parent | ad973f26511a129bde2bd5186e91cbe6ba420733 (diff) |
lots of parens, protos
Diffstat (limited to 'sys/arch/powerpc/include')
-rw-r--r-- | sys/arch/powerpc/include/cpu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/cpu.h b/sys/arch/powerpc/include/cpu.h index f532255b01f..9568ea5ac25 100644 --- a/sys/arch/powerpc/include/cpu.h +++ b/sys/arch/powerpc/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.6 2001/06/24 04:43:04 drahn Exp $ */ +/* $OpenBSD: cpu.h,v 1.7 2001/07/09 01:35:32 mickey Exp $ */ /* $NetBSD: cpu.h,v 1.1 1996/09/30 16:34:21 ws Exp $ */ /* @@ -46,7 +46,8 @@ #define cpu_swapout(p) #define cpu_wait(p) -extern void delay __P((unsigned)); +void child_return __P((struct proc *)); +void delay __P((unsigned)); #define DELAY(n) delay(n) extern volatile int want_resched; |