diff options
Diffstat (limited to 'sys/arch/mvme88k/stand')
-rw-r--r-- | sys/arch/mvme88k/stand/bootst/dev_tape.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/bootxx/bootxx.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/installboot/installboot.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/libbug/libbug.h | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/libsa/exec_mvme.c | 10 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/netboot/devopen.c | 4 |
6 files changed, 15 insertions, 15 deletions
diff --git a/sys/arch/mvme88k/stand/bootst/dev_tape.c b/sys/arch/mvme88k/stand/bootst/dev_tape.c index 1362a3b1796..a4352b8def7 100644 --- a/sys/arch/mvme88k/stand/bootst/dev_tape.c +++ b/sys/arch/mvme88k/stand/bootst/dev_tape.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dev_tape.c,v 1.1 1998/12/15 06:09:51 smurph Exp $ */ +/* $OpenBSD: dev_tape.c,v 1.2 2002/03/14 03:15:57 millert Exp $ */ /* * Copyright (c) 1993 Paul Kranenburg @@ -61,7 +61,7 @@ devopen(f, fname, file) struct devsw *dp; int errorno; - *file = (char*)fname; + *file = (char *)fname; dp = &devsw[0]; f->f_dev = dp; diff --git a/sys/arch/mvme88k/stand/bootxx/bootxx.c b/sys/arch/mvme88k/stand/bootxx/bootxx.c index f7ac21944cf..c5805457543 100644 --- a/sys/arch/mvme88k/stand/bootxx/bootxx.c +++ b/sys/arch/mvme88k/stand/bootxx/bootxx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bootxx.c,v 1.4 2001/01/13 05:19:01 smurph Exp $ */ +/* $OpenBSD: bootxx.c,v 1.5 2002/03/14 03:15:57 millert Exp $ */ /* * Copyright (c) 1994 Paul Kranenburg @@ -84,7 +84,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/mvme88k/stand/installboot/installboot.c b/sys/arch/mvme88k/stand/installboot/installboot.c index 25a199553c9..19fc29f7f66 100644 --- a/sys/arch/mvme88k/stand/installboot/installboot.c +++ b/sys/arch/mvme88k/stand/installboot/installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: installboot.c,v 1.5 2002/03/14 01:26:40 millert Exp $ */ +/* $OpenBSD: installboot.c,v 1.6 2002/03/14 03:15:57 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/mvme88k/stand/libbug/libbug.h b/sys/arch/mvme88k/stand/libbug/libbug.h index 11e000195f1..f5325292ce7 100644 --- a/sys/arch/mvme88k/stand/libbug/libbug.h +++ b/sys/arch/mvme88k/stand/libbug/libbug.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libbug.h,v 1.2 2002/03/14 01:26:40 millert Exp $ */ +/* $OpenBSD: libbug.h,v 1.3 2002/03/14 03:15:57 millert Exp $ */ /* * prototypes and such. note that get/put char are in stand.h @@ -20,4 +20,4 @@ void mvmeprom_rtc_rd(struct mvmeprom_time *); extern struct mvmeprom_args bugargs; -void bugexec __P((void (*)())); +void bugexec(void (*)()); diff --git a/sys/arch/mvme88k/stand/libsa/exec_mvme.c b/sys/arch/mvme88k/stand/libsa/exec_mvme.c index 911be2e269a..97a5e5faac0 100644 --- a/sys/arch/mvme88k/stand/libsa/exec_mvme.c +++ b/sys/arch/mvme88k/stand/libsa/exec_mvme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec_mvme.c,v 1.7 2001/07/04 08:09:30 niklas Exp $ */ +/* $OpenBSD: exec_mvme.c,v 1.8 2002/03/14 03:15:58 millert Exp $ */ /*- @@ -154,9 +154,9 @@ exec_mvme(file, flag) *cp++ = 0; --cc; } - ip = (int*)cp; + ip = (int *)cp; cp += cc; - while ((char*)ip < cp) + while ((char *)ip < cp) *ip++ = 0; /* @@ -164,7 +164,7 @@ exec_mvme(file, flag) * (Always set the symtab size word.) */ *ip++ = x.a_syms; - cp = (char*) ip; + cp = (char *) ip; if (x.a_syms > 0 && (flag & RB_NOSYM) == 0) { @@ -175,7 +175,7 @@ exec_mvme(file, flag) if (read(io, cp, cc) != cc) goto shread; cp += x.a_syms; - ip = (int*)cp; /* points to strtab length */ + ip = (int *)cp; /* points to strtab length */ cp += sizeof(int); /* String table. Length word includes itself. */ diff --git a/sys/arch/mvme88k/stand/netboot/devopen.c b/sys/arch/mvme88k/stand/netboot/devopen.c index 7e02e4bb845..e8d4893bf24 100644 --- a/sys/arch/mvme88k/stand/netboot/devopen.c +++ b/sys/arch/mvme88k/stand/netboot/devopen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: devopen.c,v 1.1 1998/08/22 08:37:58 smurph Exp $ */ +/* $OpenBSD: devopen.c,v 1.2 2002/03/14 03:15:58 millert Exp $ */ #include <sys/param.h> #include <stand.h> @@ -23,7 +23,7 @@ devopen(f, fname, file) char *cp, *path, *devname; int error; - *file = (char*)fname; + *file = (char *)fname; dp = &devsw[0]; f->f_dev = dp; error = (*dp->dv_open)(f, NULL); |