diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 03:16:15 +0000 |
commit | e63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch) | |
tree | c2aa960c67a99a878c8902943399029fa598683f /sys/arch/mvmeppc/stand | |
parent | 71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff) |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/arch/mvmeppc/stand')
-rw-r--r-- | sys/arch/mvmeppc/stand/bootxx/bootxx.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/stand/installboot/installboot.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/stand/libbug/libbug.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/mvmeppc/stand/bootxx/bootxx.c b/sys/arch/mvmeppc/stand/bootxx/bootxx.c index 451ae40de97..c39339e550d 100644 --- a/sys/arch/mvmeppc/stand/bootxx/bootxx.c +++ b/sys/arch/mvmeppc/stand/bootxx/bootxx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bootxx.c,v 1.1 2001/06/26 21:58:01 smurph Exp $ */ +/* $OpenBSD: bootxx.c,v 1.2 2002/03/14 03:15:58 millert Exp $ */ /* * Copyright (c) 1994 Paul Kranenburg @@ -86,7 +86,7 @@ main() _rtt(); } - addr = (char*)STAGE2_RELOC; + addr = (char *)STAGE2_RELOC; error = copyboot(&f, addr); f.f_dev->dv_close(&f); if (!error) { diff --git a/sys/arch/mvmeppc/stand/installboot/installboot.c b/sys/arch/mvmeppc/stand/installboot/installboot.c index f7edc6a8277..813ca3042dc 100644 --- a/sys/arch/mvmeppc/stand/installboot/installboot.c +++ b/sys/arch/mvmeppc/stand/installboot/installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: installboot.c,v 1.3 2002/03/14 01:26:41 millert Exp $ */ +/* $OpenBSD: installboot.c,v 1.4 2002/03/14 03:15:58 millert Exp $ */ /* $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */ /* @@ -74,7 +74,7 @@ int loadblocknums(char *, int); static void devread(int, void *, daddr_t, size_t, char *); static void usage(void); int main(int, char *[]); -static void vid_to_disklabel(char *, char*); +static void vid_to_disklabel(char *, char *); static void diff --git a/sys/arch/mvmeppc/stand/libbug/libbug.h b/sys/arch/mvmeppc/stand/libbug/libbug.h index fb2148fa7a5..0a0aa465b61 100644 --- a/sys/arch/mvmeppc/stand/libbug/libbug.h +++ b/sys/arch/mvmeppc/stand/libbug/libbug.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libbug.h,v 1.2 2002/03/14 01:26:41 millert Exp $ */ +/* $OpenBSD: libbug.h,v 1.3 2002/03/14 03:15:58 millert Exp $ */ /* * prototypes and such. note that get/put char are in stand.h @@ -26,4 +26,4 @@ int mvmeprom_netctrl_reset(u_char, u_char); extern struct mvmeprom_args bugargs; -void bugexec __P((void (*)())); +void bugexec(void (*)()); |