mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Remove prototype, no other crt1.c has or needs it.
This commit is contained in:
parent
efc8588d57
commit
a378c419fe
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93036
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user