diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-11 21:33:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-11 21:33:55 +0000 |
commit | 011ce8ed8581c074aa8d02c8bdb9747e4e41c5dc (patch) | |
tree | 5c4c86d88c521c5fa7c9b42c0ab16b9987a940c7 /sysdeps/unix | |
parent | 350eb336e3213847ebe73f4fd6c13dc02ef14ea7 (diff) | |
download | glibc-011ce8ed8581c074aa8d02c8bdb9747e4e41c5dc.zip glibc-011ce8ed8581c074aa8d02c8bdb9747e4e41c5dc.tar.gz glibc-011ce8ed8581c074aa8d02c8bdb9747e4e41c5dc.tar.bz2 |
Update.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/init-first.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/init-first.c b/sysdeps/unix/sysv/linux/init-first.c index 6c293e3..0931e99 100644 --- a/sysdeps/unix/sysv/linux/init-first.c +++ b/sysdeps/unix/sysv/linux/init-first.c @@ -93,7 +93,11 @@ __libc_init_first (void) } #else -SYSDEP_CALL_INIT(__libc_init_first, init); +void +__libc_init_first (int argc, char **argv, char **envp) +{ + init (argc, argv, envp); +} #endif |