diff options
author | obrien <obrien@FreeBSD.org> | 2002-03-22 09:22:15 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-03-22 09:22:15 +0000 |
commit | e2881f49cc545371650e022bf57db9fee6d9f8c9 (patch) | |
tree | 940c5b6971ca7a1e0ccd4772f07ad6694c595c70 /lib/libc/stdlib/twalk.c | |
parent | 700cd85b2e27d1f9b06fa6fea221100cc8d47e6f (diff) | |
download | FreeBSD-src-e2881f49cc545371650e022bf57db9fee6d9f8c9.zip FreeBSD-src-e2881f49cc545371650e022bf57db9fee6d9f8c9.tar.gz |
Remove multi-line __P() usage.
Diffstat (limited to 'lib/libc/stdlib/twalk.c')
-rw-r--r-- | lib/libc/stdlib/twalk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/twalk.c b/lib/libc/stdlib/twalk.c index 78d3685..78be57d 100644 --- a/lib/libc/stdlib/twalk.c +++ b/lib/libc/stdlib/twalk.c @@ -22,8 +22,8 @@ __RCSID("$NetBSD: twalk.c,v 1.1 1999/02/22 10:33:16 christos Exp $"); #include <search.h> #include <stdlib.h> -static void trecurse __P((const node_t *, - void (*action)(const void *, VISIT, int), int level)); +static void trecurse(const node_t *, + void (*action)(const void *, VISIT, int), int level); /* Walk the nodes of a tree */ static void |