summaryrefslogtreecommitdiffstats
path: root/usr.bin/cut/cut.c
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2001-01-28 00:35:40 +0000
committerwill <will@FreeBSD.org>2001-01-28 00:35:40 +0000
commit18f604377b44e23f62badff17ec21171a8ca980e (patch)
tree3a0288952271f3dcc6fb8bd9f3c6b203323c85bc /usr.bin/cut/cut.c
parentbb6c08b6c424a3ed78901df643c8c08c3ea48835 (diff)
downloadFreeBSD-src-18f604377b44e23f62badff17ec21171a8ca980e.zip
FreeBSD-src-18f604377b44e23f62badff17ec21171a8ca980e.tar.gz
De-__P()-ify
Reviewed by: markm
Diffstat (limited to 'usr.bin/cut/cut.c')
-rw-r--r--usr.bin/cut/cut.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/cut/cut.c b/usr.bin/cut/cut.c
index 89000d5..a3c1dfe 100644
--- a/usr.bin/cut/cut.c
+++ b/usr.bin/cut/cut.c
@@ -62,11 +62,11 @@ int dflag;
int fflag;
int sflag;
-void c_cut __P((FILE *, const char *));
-void f_cut __P((FILE *, const char *));
-void get_list __P((char *));
-int main __P((int, char **));
-static void usage __P((void));
+void c_cut (FILE *, const char *);
+void f_cut (FILE *, const char *);
+void get_list (char *);
+int main (int, char **);
+static void usage (void);
int
main(argc, argv)
@@ -74,7 +74,7 @@ main(argc, argv)
char *argv[];
{
FILE *fp;
- void (*fcn) __P((FILE *, const char *)) = NULL;
+ void (*fcn) (FILE *, const char *) = NULL;
int ch;
fcn = NULL;
OpenPOWER on IntegriCloud