From e4e811215aa4643f48519d3d692835034feba83c Mon Sep 17 00:00:00 2001 From: xtraeme Date: Sat, 5 Feb 2005 14:26:05 +0000 Subject: [PATCH] Kill __P(); --- sbin/fsck_ext2fs/inode.c | 6 +++--- sbin/fsdb/fsdb.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sbin/fsck_ext2fs/inode.c b/sbin/fsck_ext2fs/inode.c index 8f2016b7ddff..6f4e59e685d2 100644 --- a/sbin/fsck_ext2fs/inode.c +++ b/sbin/fsck_ext2fs/inode.c @@ -1,4 +1,4 @@ -/* $NetBSD: inode.c,v 1.15 2005/01/19 19:31:28 xtraeme Exp $ */ +/* $NetBSD: inode.c,v 1.16 2005/02/05 14:26:05 xtraeme Exp $ */ /* * Copyright (c) 1980, 1986, 1993 @@ -63,7 +63,7 @@ #if 0 static char sccsid[] = "@(#)inode.c 8.5 (Berkeley) 2/8/95"; #else -__RCSID("$NetBSD: inode.c,v 1.15 2005/01/19 19:31:28 xtraeme Exp $"); +__RCSID("$NetBSD: inode.c,v 1.16 2005/02/05 14:26:05 xtraeme Exp $"); #endif #endif /* not lint */ @@ -191,7 +191,7 @@ iblock(struct inodesc *idesc, long ilevel, u_int64_t isize) int32_t *ap; int32_t *aplim; struct bufarea *bp; - int i, n, (*func) __P((struct inodesc *)), nif; + int i, n, (*func)(struct inodesc *), nif; u_int64_t sizepb; char buf[BUFSIZ]; char pathbuf[MAXPATHLEN + 1]; diff --git a/sbin/fsdb/fsdb.c b/sbin/fsdb/fsdb.c index 0f189d808ff2..9a038704bb8b 100644 --- a/sbin/fsdb/fsdb.c +++ b/sbin/fsdb/fsdb.c @@ -1,4 +1,4 @@ -/* $NetBSD: fsdb.c,v 1.30 2005/01/19 20:19:04 xtraeme Exp $ */ +/* $NetBSD: fsdb.c,v 1.31 2005/02/05 14:26:05 xtraeme Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("$NetBSD: fsdb.c,v 1.30 2005/01/19 20:19:04 xtraeme Exp $"); +__RCSID("$NetBSD: fsdb.c,v 1.31 2005/02/05 14:26:05 xtraeme Exp $"); #endif /* not lint */ #include @@ -154,7 +154,7 @@ main(int argc, char *argv[]) exit(rval); } -#define CMDFUNC(func) static int func __P((int argc, char *argv[])) +#define CMDFUNC(func) static int func (int argc, char *argv[]) #define CMDFUNCSTART(func) static int func(argc, argv) \ int argc; \ char *argv[];