From 42c88111e103d4afdc08cca48094f81bcadd6530 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Mon, 10 Jul 2000 21:30:31 +0000 Subject: [PATCH] explicitly specify main() return type (make buildable with -Wall -Werror) --- sys/arch/mvme68k/stand/sboot/srec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/arch/mvme68k/stand/sboot/srec.c b/sys/arch/mvme68k/stand/sboot/srec.c index acb50895c09f..ee8d9d568042 100644 --- a/sys/arch/mvme68k/stand/sboot/srec.c +++ b/sys/arch/mvme68k/stand/sboot/srec.c @@ -1,4 +1,4 @@ -/* $NetBSD: srec.c,v 1.1 1996/09/07 19:21:32 thorpej Exp $ */ +/* $NetBSD: srec.c,v 1.2 2000/07/10 21:30:31 jdolecek Exp $ */ /* * Public domain, believed to be by Mike Price. @@ -18,6 +18,7 @@ int checksum(); int mask; int size; +int main(argc, argv) int argc; char *argv[];