aboutsummaryrefslogtreecommitdiff
path: root/bin/sync
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2002-02-02 06:50:57 +0000
committerWarner Losh <imp@FreeBSD.org>2002-02-02 06:50:57 +0000
commit5134c3f7990c353d2442ddd8a9a1d30b80099e43 (patch)
tree01a827446e9ba4f34cf1e754fcac691f6c9eb1cf /bin/sync
parent46251dde8f47db03ad83997efd5e8f8bd8938855 (diff)
downloadsrc-5134c3f7990c353d2442ddd8a9a1d30b80099e43.tar.gz
src-5134c3f7990c353d2442ddd8a9a1d30b80099e43.zip
o __P has been reoved
o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int argc, char *argv[]) is the preferred main definition. o Attempt to not break style(9) conformance for declarations more than they already are. o Change int foo() { ... to int foo(void) { ...
Notes
Notes: svn path=/head/; revision=90111
Diffstat (limited to 'bin/sync')
-rw-r--r--bin/sync/sync.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/sync/sync.c b/bin/sync/sync.c
index 019b8fd68902..54ea61ea4178 100644
--- a/bin/sync/sync.c
+++ b/bin/sync/sync.c
@@ -48,10 +48,8 @@ static const char rcsid[] =
#include <stdlib.h>
#include <unistd.h>
-int main __P((void));
-
int
-main()
+main(int argc __unused, char *argv[] __unused)
{
sync();
exit(0);