de-__P these files.
This commit is contained in:
parent
cfbb4ec285
commit
ed0efbc5de
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: autoconf.h,v 1.5 2006/05/03 17:47:06 garbled Exp $ */
|
||||
/* $NetBSD: autoconf.h,v 1.6 2006/05/09 02:52:39 garbled Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (C) 1998 Internet Research Institute, Inc.
|
||||
|
@ -43,7 +43,7 @@ struct confargs {
|
|||
/* bus_space_tag_t ca_tag; */
|
||||
};
|
||||
|
||||
extern void *mapiodev __P((paddr_t, psize_t));
|
||||
extern paddr_t kvtop __P((caddr_t));
|
||||
extern void *intr_establish __P((int, int, int, int (*)(void *), void *));
|
||||
extern void *mapiodev(paddr_t, psize_t);
|
||||
extern paddr_t kvtop(caddr_t);
|
||||
extern void *intr_establish(int, int, int, int (*)(void *), void *);
|
||||
void comsoft(void);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bootinfo.h,v 1.5 2005/12/11 12:18:47 christos Exp $ */
|
||||
/* $NetBSD: bootinfo.h,v 1.6 2006/05/09 02:52:39 garbled Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997
|
||||
|
@ -56,7 +56,7 @@ struct btinfo_clock {
|
|||
};
|
||||
|
||||
#ifdef _KERNEL
|
||||
void *lookup_bootinfo __P((int));
|
||||
void *lookup_bootinfo(int);
|
||||
#endif
|
||||
|
||||
#define BOOTINFO_MAXSIZE 0xd0
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: powerpc.h,v 1.4 2005/12/11 12:18:47 christos Exp $ */
|
||||
/* $NetBSD: powerpc.h,v 1.5 2006/05/09 02:52:39 garbled Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (C) 1996 Wolfgang Solfrank.
|
||||
|
@ -38,14 +38,14 @@ struct mem_region {
|
|||
psize_t size;
|
||||
};
|
||||
|
||||
void mem_regions __P((struct mem_region **, struct mem_region **));
|
||||
void mem_regions(struct mem_region **, struct mem_region **);
|
||||
|
||||
/*
|
||||
* These two functions get used solely in boot() in machdep.c.
|
||||
*
|
||||
* Not sure whether boot itself should be implementation dependent instead. XXX
|
||||
*/
|
||||
void ppc_exit __P((void)) __attribute__((__noreturn__));
|
||||
void ppc_boot __P((char *bootspec)) __attribute__((__noreturn__));
|
||||
void ppc_exit(void) __attribute__((__noreturn__));
|
||||
void ppc_boot(char *) __attribute__((__noreturn__));
|
||||
|
||||
#endif /* _MACHINE_POWERPC_H_ */
|
||||
|
|
Loading…
Reference in New Issue