diff options
author | 2002-03-14 01:26:25 +0000 | |
---|---|---|
committer | 2002-03-14 01:26:25 +0000 | |
commit | c4071fd13883b3f74b90a411bbb39755a785aeaa (patch) | |
tree | 241e7c760222fac909b512d36156c6db1b610256 /sys/dev/isa/ast.c | |
parent | compare pointers with NULL not 0 (diff) | |
download | wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/ast.c')
-rw-r--r-- | sys/dev/isa/ast.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/isa/ast.c b/sys/dev/isa/ast.c index fb51817eee6..20a498c404f 100644 --- a/sys/dev/isa/ast.c +++ b/sys/dev/isa/ast.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ast.c,v 1.17 1997/07/07 16:38:22 niklas Exp $ */ +/* $OpenBSD: ast.c,v 1.18 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: ast.c,v 1.28 1996/05/12 23:51:45 mycroft Exp $ */ /* @@ -60,10 +60,10 @@ struct ast_softc { bus_space_handle_t sc_slaveioh[NSLAVES]; }; -int astprobe __P((struct device *, void *, void *)); -void astattach __P((struct device *, struct device *, void *)); -int astintr __P((void *)); -int astprint __P((void *, const char *)); +int astprobe(struct device *, void *, void *); +void astattach(struct device *, struct device *, void *); +int astintr(void *); +int astprint(void *, const char *); struct cfattach ast_ca = { sizeof(struct ast_softc), astprobe, astattach |