diff options
author | imp <imp@FreeBSD.org> | 2002-03-22 01:33:25 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-03-22 01:33:25 +0000 |
commit | 1698cb216e2d4ca62662103eba0191f134923698 (patch) | |
tree | bdbefa52f70f43a70ad528a58194f71ca4abf1e3 /usr.bin/make/targ.c | |
parent | 74d826c7a6e9f98072df5f7dba2b84aa516fe425 (diff) | |
download | FreeBSD-src-1698cb216e2d4ca62662103eba0191f134923698.zip FreeBSD-src-1698cb216e2d4ca62662103eba0191f134923698.tar.gz |
remove __P
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r-- | usr.bin/make/targ.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index 57b6b80..30de628 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -96,10 +96,10 @@ static Hash_Table targets; /* a hash table of same */ #define HTSIZE 191 /* initial size of hash table */ -static int TargPrintOnlySrc __P((void *, void *)); -static int TargPrintName __P((void *, void *)); -static int TargPrintNode __P((void *, void *)); -static void TargFreeGN __P((void *)); +static int TargPrintOnlySrc(void *, void *); +static int TargPrintName(void *, void *); +static int TargPrintNode(void *, void *); +static void TargFreeGN(void *); /*- *----------------------------------------------------------------------- |