(_dl_sysdep_start) [DL_SYSDEP_INIT]: Invoke this macro before calling DL_MAIN.

This commit is contained in:
Roland McGrath 1995-12-02 09:03:14 +00:00
parent 8e2e98a2a9
commit 376fd36e2d

View File

@ -76,6 +76,10 @@ _dl_sysdep_start (void **start_argptr,
_dl_secure = uid != euid || gid != egid;
#ifdef DL_SYSDEP_INIT
DL_SYSDEP_INIT;
#endif
(*dl_main) (phdr, phnum, &user_entry);
return user_entry;
}