diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-08-22 18:18:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-08-22 18:18:36 +0000 |
commit | 7ee6dda258cc36b22a0930d50e75bb479fe4403a (patch) | |
tree | af64068537e5287764b8215e8f2a89d2002b3b31 /sys/arch/powerpc | |
parent | dba4d9944a9e90f4fd823ca50d8c8f17152a34f4 (diff) |
mark setfault() with __returns_twice
ok kettenis drahn
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/include/pcb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/pcb.h b/sys/arch/powerpc/include/pcb.h index e6672182033..edacac9d43f 100644 --- a/sys/arch/powerpc/include/pcb.h +++ b/sys/arch/powerpc/include/pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcb.h,v 1.12 2008/04/27 16:01:47 drahn Exp $ */ +/* $OpenBSD: pcb.h,v 1.13 2011/08/22 18:18:35 deraadt Exp $ */ /* $NetBSD: pcb.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */ /*- @@ -67,6 +67,6 @@ struct md_coredump { #ifdef _KERNEL extern struct proc *fpuproc; -int setfault(faultbuf *env); +int setfault(faultbuf *env) __returns_twice; #endif #endif /* _POWERPC_PCB_H_ */ |