summaryrefslogtreecommitdiffstats
path: root/lib/csu
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-03-23 18:14:04 +0000
committerobrien <obrien@FreeBSD.org>2002-03-23 18:14:04 +0000
commit133b5a805bafeac4b34579f3128394c92e3305af (patch)
tree9f1ac53fa42bf0df6b5f64234185b94ebae014a4 /lib/csu
parentfef2f47e21110fd2bebd5e5bc0289a2457d9b3ff (diff)
downloadFreeBSD-src-133b5a805bafeac4b34579f3128394c92e3305af.zip
FreeBSD-src-133b5a805bafeac4b34579f3128394c92e3305af.tar.gz
Remove prototype, no other crt1.c has or needs it.
Diffstat (limited to 'lib/csu')
-rw-r--r--lib/csu/powerpc/crt1.c15
1 files changed, 6 insertions, 9 deletions
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;
OpenPOWER on IntegriCloud