diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-22 17:59:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-22 17:59:19 +0000 |
commit | c43a17327f2a016f3c8f4cbba61038a48ed59526 (patch) | |
tree | e55fb53d2b14cfde1f8eea55ae868e1480c31db9 /sysdeps/unix/sysv/linux | |
parent | 32b4fe6a63b7a95a8bdcd0d799a9de2106723790 (diff) | |
download | glibc-c43a17327f2a016f3c8f4cbba61038a48ed59526.tar.gz glibc-c43a17327f2a016f3c8f4cbba61038a48ed59526.tar.xz glibc-c43a17327f2a016f3c8f4cbba61038a48ed59526.zip |
(_dl_sysdep_start): Move DL_SYSDEP_OSCHECK before the use of the first system call.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/dl-osinfo.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/dl-osinfo.h b/sysdeps/unix/sysv/linux/dl-osinfo.h index 00a6caeaa6..f327161b7a 100644 --- a/sysdeps/unix/sysv/linux/dl-osinfo.h +++ b/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -19,6 +19,11 @@ #include <sys/sysctl.h> +/* There is no prototype for __sysctl in that file. */ +extern int __sysctl (int *name, int nlen, void *oldval, + size_t *oldlenp, void *newval, size_t newlen); + + #ifdef SHARED /* This is the function used in the dynamic linker to print the fatal error message. */ |