Module Name: src
Committed By: sevan
Date: Tue Aug 23 21:07:40 UTC 2016
Modified Files:
src/bin/chio: chio.c
Log Message:
Remove redundant main() prototype which survived a K&R to ANSI transition.
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/bin/chio/chio.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/chio/chio.c
diff -u src/bin/chio/chio.c:1.31 src/bin/chio/chio.c:1.32
--- src/bin/chio/chio.c:1.31 Mon Aug 29 14:51:17 2011
+++ src/bin/chio/chio.c Tue Aug 23 21:07:40 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: chio.c,v 1.31 2011/08/29 14:51:17 joerg Exp $ */
+/* $NetBSD: chio.c,v 1.32 2016/08/23 21:07:40 sevan Exp $ */
/*-
* Copyright (c) 1996, 1998, 1999 The NetBSD Foundation, Inc.
@@ -39,7 +39,7 @@
__COPYRIGHT(
"@(#) Copyright (c) 1996, 1998, 1999\
The NetBSD Foundation, Inc. All rights reserved.");
-__RCSID("$NetBSD: chio.c,v 1.31 2011/08/29 14:51:17 joerg Exp $");
+__RCSID("$NetBSD: chio.c,v 1.32 2016/08/23 21:07:40 sevan Exp $");
#endif
#include <sys/param.h>
@@ -60,7 +60,6 @@ __RCSID("$NetBSD: chio.c,v 1.31 2011/08/
#include "defs.h"
#include "pathnames.h"
-int main(int, char *[]);
__dead static void usage(void);
static void cleanup(void);
static int parse_element_type(const char *);