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/sun3/include | |
parent | 71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff) |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/arch/sun3/include')
-rw-r--r-- | sys/arch/sun3/include/machdep.h | 4 | ||||
-rw-r--r-- | sys/arch/sun3/include/mon.h | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/sun3/include/machdep.h b/sys/arch/sun3/include/machdep.h index da3f744ed42..a3f33ee2576 100644 --- a/sys/arch/sun3/include/machdep.h +++ b/sys/arch/sun3/include/machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.h,v 1.17 2002/03/14 01:26:46 millert Exp $ */ +/* $OpenBSD: machdep.h,v 1.18 2002/03/14 03:16:01 millert Exp $ */ /* * Copyright (c) 1994 Gordon W. Ross @@ -96,7 +96,7 @@ int fpu_emulate(struct frame *, struct fpframe *); /* Backward compatibility... */ #define getsr _getsr -void** getvbr(void); +void **getvbr(void); vm_offset_t high_segment_alloc(int npages); diff --git a/sys/arch/sun3/include/mon.h b/sys/arch/sun3/include/mon.h index bb1dcc2f69f..1164cca88cd 100644 --- a/sys/arch/sun3/include/mon.h +++ b/sys/arch/sun3/include/mon.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mon.h,v 1.6 2002/03/14 01:26:46 millert Exp $ */ +/* $OpenBSD: mon.h,v 1.7 2002/03/14 03:16:01 millert Exp $ */ /* $NetBSD: mon.h,v 1.19 1996/11/20 18:57:12 gwr Exp $ */ /*- @@ -134,7 +134,7 @@ typedef struct { */ int (*getKey)(void); /* Get next key if one exists */ - int (*initGetKey)(void*); /* Initialize get key */ + int (*initGetKey)(void *); /* Initialize get key */ u_int *translation; /* Kbd translation selector (see keyboard.h in sun monitor code) */ @@ -197,8 +197,8 @@ typedef struct { * Non-maskable interrupt (nmi) information */ - int (*nmiAddr)(void*); /* Addr for level 7 vector */ - int (*abortEntry)(void*); /* Entry for keyboard abort */ + int (*nmiAddr)(void *); /* Addr for level 7 vector */ + int (*abortEntry)(void *); /* Entry for keyboard abort */ int *nmiClock; /* Counts up in msec */ /* @@ -221,10 +221,10 @@ typedef struct { long *resetAddr; /* where to jump on a reset */ long *resetMap; /* pgmap entry for resetaddr */ /* Really struct pgmapent * */ - int (*exitToMon)(void); /* Exit from user program */ + int (*exitToMon)(void); /* Exit from user program */ u_char **memorybitmap; /* V1: &{0 or &bits} */ - void (*setcxsegmap)(int,int,int); /* Set seg in any context */ - void (**vector_cmd)(int, char*); /* V2: Handler for 'v' cmd */ + void (*setcxsegmap)(int,int,int); /* Set seg in any context */ + void (**vector_cmd)(int, char *); /* V2: Handler for 'v' cmd */ int dummy1z; int dummy2z; int dummy3z; |