aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-06-20 05:35:40 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-06-20 05:35:40 +0000
commitd7b8563d55f3b6ddd6a354a38e188be67d59e0ca (patch)
tree0d937e6f042dcd5d5a3f36da30c100d863e8bb65
parent0e6c085ae69f1d8cca1a7a0caf80d1a16539b861 (diff)
Notes
-rw-r--r--usr.bin/false/false.c2
-rw-r--r--usr.bin/true/true.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/false/false.c b/usr.bin/false/false.c
index 11d69ae68657..da950f9c180d 100644
--- a/usr.bin/false/false.c
+++ b/usr.bin/false/false.c
@@ -44,7 +44,7 @@ static const char sccsid[] = "@(#)false.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
int
-main()
+main(void)
{
return 1;
}
diff --git a/usr.bin/true/true.c b/usr.bin/true/true.c
index ac17b6cce8a0..8e2f2554396a 100644
--- a/usr.bin/true/true.c
+++ b/usr.bin/true/true.c
@@ -44,7 +44,7 @@ static const char sccsid[] = "@(#)true.c 8.1 (Berkeley) 6/9/93";
#endif /* not lint */
int
-main()
+main(void)
{
return 0;
}