diff options
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/include/loadfile_machdep.h | 8 | ||||
-rw-r--r-- | sys/arch/hppa/stand/boot/exec.c | 4 | ||||
-rw-r--r-- | sys/arch/hppa/stand/cdboot/cdboot.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/hppa/include/loadfile_machdep.h b/sys/arch/hppa/include/loadfile_machdep.h index 631ebcd5615..88d67f0e947 100644 --- a/sys/arch/hppa/include/loadfile_machdep.h +++ b/sys/arch/hppa/include/loadfile_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: loadfile_machdep.h,v 1.1 2002/10/24 19:27:15 mickey Exp $ */ +/* $OpenBSD: loadfile_machdep.h,v 1.2 2004/06/14 00:32:31 deraadt Exp $ */ /*- * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. @@ -74,9 +74,9 @@ #define ALLOC(a) malloc(a) #define FREE(a, b) free(a) -ssize_t vread __P((int, u_long, u_long *, size_t)); -void vcopy __P((u_long, u_long, u_long *, size_t)); -void vzero __P((u_long, u_long *, size_t)); +ssize_t vread(int, u_long, u_long *, size_t); +void vcopy(u_long, u_long, u_long *, size_t); +void vzero(u_long, u_long *, size_t); #endif #endif /* ! _HPPA_LOADFILE_MACHDEP_H_ */ diff --git a/sys/arch/hppa/stand/boot/exec.c b/sys/arch/hppa/stand/boot/exec.c index 50c2538b96c..8dd0c20771f 100644 --- a/sys/arch/hppa/stand/boot/exec.c +++ b/sys/arch/hppa/stand/boot/exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.c,v 1.3 2004/04/07 18:24:20 mickey Exp $ */ +/* $OpenBSD: exec.c,v 1.4 2004/06/14 00:32:31 deraadt Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -33,7 +33,7 @@ #include <stand/boot/bootarg.h> #include "dev_hppa.h" -typedef void (*startfuncp) __P((int, int, int, int, int, int, caddr_t)) +typedef void (*startfuncp)(int, int, int, int, int, int, caddr_t) __attribute__ ((noreturn)); void diff --git a/sys/arch/hppa/stand/cdboot/cdboot.c b/sys/arch/hppa/stand/cdboot/cdboot.c index d6733f1fea1..47715f6c8ef 100644 --- a/sys/arch/hppa/stand/cdboot/cdboot.c +++ b/sys/arch/hppa/stand/cdboot/cdboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cdboot.c,v 1.6 2004/04/07 18:24:20 mickey Exp $ */ +/* $OpenBSD: cdboot.c,v 1.7 2004/06/14 00:32:31 deraadt Exp $ */ /* * Copyright (c) 2003 Michael Shalayeff @@ -59,7 +59,7 @@ struct consdev constab[] = { }; struct consdev *cn_tab; -typedef void (*startfuncp) __P((int, int, int, int, int, int, caddr_t)) +typedef void (*startfuncp)(int, int, int, int, int, int, caddr_t) __attribute__ ((noreturn)); void |