summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/csu/alpha/crt1.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/csu/alpha/crt1.c b/lib/csu/alpha/crt1.c
index c17f58d..a173842 100644
--- a/lib/csu/alpha/crt1.c
+++ b/lib/csu/alpha/crt1.c
@@ -52,6 +52,8 @@ extern int _DYNAMIC;
extern void _init(void);
extern void _fini(void);
extern int main(int, char **, char **);
+extern void _start(char **, void (*)(void), struct Struct_Obj_Entry *,
+ struct ps_strings *);
#ifdef GCRT
extern void _mcleanup(void);
@@ -67,8 +69,8 @@ const char *__progname = "";
void
_start(char **ap,
void (*cleanup)(void), /* from shared loader */
- struct Struct_Obj_Entry *obj, /* from shared loader */
- struct ps_strings *ps_strings)
+ struct Struct_Obj_Entry *obj __unused, /* from shared loader */
+ struct ps_strings *ps_strings __unused)
{
int argc;
char **argv;
OpenPOWER on IntegriCloud