diff options
author | alfred <alfred@FreeBSD.org> | 2002-10-16 22:18:42 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-10-16 22:18:42 +0000 |
commit | 5962200c28a9095e3b3cc5585c0ff05c5abe1acc (patch) | |
tree | 14a878c8e2c2dbbcda2715e171c68073f5589062 /lib/libc/stdlib | |
parent | 6950d09249a1f91a582e107b1d64962484867b7b (diff) | |
download | FreeBSD-src-5962200c28a9095e3b3cc5585c0ff05c5abe1acc.zip FreeBSD-src-5962200c28a9095e3b3cc5585c0ff05c5abe1acc.tar.gz |
de-__P()
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/getopt_long.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/getopt_long.c b/lib/libc/stdlib/getopt_long.c index acf002b..474290f 100644 --- a/lib/libc/stdlib/getopt_long.c +++ b/lib/libc/stdlib/getopt_long.c @@ -94,9 +94,9 @@ __weak_alias(getopt_long,_getopt_long) #define EMSG "" -static int getopt_internal __P((int, char * const *, const char *)); -static int gcd __P((int, int)); -static void permute_args __P((int, int, int, char * const *)); +static int getopt_internal(int, char * const *, const char *); +static int gcd(int, int); +static void permute_args(int, int, int, char * const *); static char *place = EMSG; /* option letter processing */ |