summaryrefslogtreecommitdiff
path: root/sys/stand
diff options
context:
space:
mode:
authordsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
committerdsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
commit02cdf4d2c869ecfa1ae5484cf77eefe2fbcc6d94 (patch)
tree9a02e625d403e5fcedfdc6be4803e2404356bf31 /sys/stand
parentdfbb3f921a23a1aba4463f31ef9233ac94ce606c (diff)
Remove all the __P() from sys (excluding sys/dist)
Diff checked with grep and MK1 eyeball. i386 and amd64 GENERIC and sys still build.
Diffstat (limited to 'sys/stand')
-rw-r--r--sys/stand/ls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/stand/ls.c b/sys/stand/ls.c
index 1cb8ff1c814..ac845bb35f6 100644
--- a/sys/stand/ls.c
+++ b/sys/stand/ls.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ls.c,v 1.13 2005/12/11 12:25:20 christos Exp $ */
+/* $NetBSD: ls.c,v 1.14 2009/03/14 14:46:11 dsl Exp $ */
/*-
* Copyright (c) 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1993\n\
#if 0
static char sccsid[] = "@(#)ls.c 8.1 (Berkeley) 6/11/93";
#else
-__RCSID("$NetBSD: ls.c,v 1.13 2005/12/11 12:25:20 christos Exp $");
+__RCSID("$NetBSD: ls.c,v 1.14 2009/03/14 14:46:11 dsl Exp $");
#endif
#endif /* not lint */
@@ -51,8 +51,8 @@ __RCSID("$NetBSD: ls.c,v 1.13 2005/12/11 12:25:20 christos Exp $");
#include <sys/ttychars.h>
#include <lib/libsa/stand.h>
-int main __P((void));
-static void ls __P((int));
+int main(void);
+static void ls(int);
int
main()