Drop main() prototype. Syncs with NetBSD-8

closes #267

Change-Id: I80a2e3329463e3473fa45fbc20681861a9ba658f
This commit is contained in:
Sevan Janiyan 2018-11-01 23:20:55 +00:00 committed by Lionel Sambuc
parent c9e73d66fc
commit 0578da2163

View File

@ -1,4 +1,4 @@
/* $NetBSD: dd.c,v 1.50 2015/03/18 13:23:49 manu Exp $ */
/* $NetBSD: dd.c,v 1.51 2016/09/05 01:00:07 sevan Exp $ */
/*-
* Copyright (c) 1991, 1993, 1994
@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993, 1994\
#if 0
static char sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94";
#else
__RCSID("$NetBSD: dd.c,v 1.50 2015/03/18 13:23:49 manu Exp $");
__RCSID("$NetBSD: dd.c,v 1.51 2016/09/05 01:00:07 sevan Exp $");
#endif
#endif /* not lint */
@ -73,8 +73,6 @@ static void getfdtype(IO *);
static void redup_clean_fd(IO *);
static void setup(void);
int main(int, char *[]);
IO in, out; /* input/output state */
STAT st; /* statistics */
void (*cfunc)(void); /* conversion function */