aboutsummaryrefslogtreecommitdiff
path: root/lib/csu
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-06-25 18:01:12 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-06-25 18:01:12 +0000
commitad275bd7601a61056a8ffb6f24517aa1d0853fad (patch)
tree988b0c7faab8e6648f47556054040de979e763c7 /lib/csu
parent358ad31d9a1e2ff8baa59c9906614cadbc2d0dfb (diff)
Notes
Diffstat (limited to 'lib/csu')
-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 c17f58d8c3fa..a173842547b2 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;