summaryrefslogtreecommitdiff
path: root/lib/csu
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2002-02-02 20:45:59 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2002-02-02 20:45:59 +0000
commitb61fcc06f2f659aa29d1b6bd748a4231d277c35e (patch)
tree04d07f37df2a4dd7158dce034cccab94d43575df /lib/csu
parent5179fec013048a8c671c2085527bed44607f0a71 (diff)
fix some protos
Diffstat (limited to 'lib/csu')
-rw-r--r--lib/csu/hppa/crt0.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/csu/hppa/crt0.c b/lib/csu/hppa/crt0.c
index 56a7ebf0221..6df1e08e659 100644
--- a/lib/csu/hppa/crt0.c
+++ b/lib/csu/hppa/crt0.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crt0.c,v 1.1 2001/08/19 19:57:54 mickey Exp $ */
+/* $OpenBSD: crt0.c,v 1.2 2002/02/02 20:45:58 mickey Exp $ */
/*
* Copyright (c) 2001 Michael Shalayeff
@@ -35,7 +35,7 @@ int global __asm ("$global$") = 0;
int sh_func_adrs __asm ("$$sh_func_adrs") = 0;
#if defined(LIBC_SCCS) && !defined(lint)
-static const char rcsid[] = "$OpenBSD: crt0.c,v 1.1 2001/08/19 19:57:54 mickey Exp $";
+static const char rcsid[] = "$OpenBSD: crt0.c,v 1.2 2002/02/02 20:45:58 mickey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
@@ -64,7 +64,7 @@ extern void _mcleanup __P((void));
extern u_int etext, eprol;
#endif /* MCRT0 */
-void __main() {}
+void __start(char **, void (*)(void), const Obj_Entry *);
void
__start(sp, cleanup, obj)
@@ -96,6 +96,8 @@ __start(sp, cleanup, obj)
exit(main(arginfo->ps_nargvstr, argv, environ));
}
+void __main() {}
+
#include "common.c"
#ifdef MCRT0