summaryrefslogtreecommitdiff
path: root/usr.bin/cut/cut.c
diff options
context:
space:
mode:
authormmcc <mmcc@cvs.openbsd.org>2015-11-03 04:57:21 +0000
committermmcc <mmcc@cvs.openbsd.org>2015-11-03 04:57:21 +0000
commit93dd1615ab6e75d5a39755cd1ab2818925d28200 (patch)
tree5c1c4d43197e89e7568e9d249e86c124a64797a6 /usr.bin/cut/cut.c
parent666cb7d7a4ff962cc1667e5fa36bda66e8c83bce (diff)
Blank line after pledge().
Diffstat (limited to 'usr.bin/cut/cut.c')
-rw-r--r--usr.bin/cut/cut.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cut/cut.c b/usr.bin/cut/cut.c
index 7985a04ee93..16d4e336719 100644
--- a/usr.bin/cut/cut.c
+++ b/usr.bin/cut/cut.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cut.c,v 1.21 2015/10/09 01:37:07 deraadt Exp $ */
+/* $OpenBSD: cut.c,v 1.22 2015/11/03 04:57:20 mmcc Exp $ */
/* $NetBSD: cut.c,v 1.9 1995/09/02 05:59:23 jtc Exp $ */
/*
@@ -123,6 +123,7 @@ main(int argc, char *argv[])
else {
if (pledge("stdio rpath", NULL) == -1)
err(1, "pledge");
+
fcn(stdin, "stdin");
}
exit(rval);