From 133b5a805bafeac4b34579f3128394c92e3305af Mon Sep 17 00:00:00 2001 From: obrien Date: Sat, 23 Mar 2002 18:14:04 +0000 Subject: Remove prototype, no other crt1.c has or needs it. --- lib/csu/powerpc/crt1.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'lib/csu') diff --git a/lib/csu/powerpc/crt1.c b/lib/csu/powerpc/crt1.c index c9bc266..eb293d6 100644 --- a/lib/csu/powerpc/crt1.c +++ b/lib/csu/powerpc/crt1.c @@ -62,24 +62,21 @@ extern int eprol; extern int etext; #endif -/* - * First 5 arguments are specified by the PowerPC SVR4 ABI. - * The last argument, ps_strings, is a BSD extension. - */ -void _start(int, char **, char **, const struct Struct_Obj_Entry *, - void (*)(void), struct ps_strings *); - char **environ; char *__progname = ""; struct ps_strings *__ps_strings; -/* The entry function. */ +/* The entry function. + * + * First 5 arguments are specified by the PowerPC SVR4 ABI. + * The last argument, ps_strings, is a BSD extension. + */ void _start(argc, argv, envp, obj, cleanup, ps_strings) int argc; char **argv, **envp; const struct Struct_Obj_Entry *obj; /* from shared loader */ - void (*cleanup)(void); /* from shared loader */ + void (*cleanup)(void); /* from shared loader */ struct ps_strings *ps_strings; /* BSD extension */ { char *namep; -- cgit v1.1