diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/clock_getcpuclockid.c | 3 | ||||
-rw-r--r-- | time/clock_getres.c | 3 | ||||
-rw-r--r-- | time/clock_gettime.c | 3 | ||||
-rw-r--r-- | time/clock_nanosleep.c | 3 | ||||
-rw-r--r-- | time/clock_settime.c | 3 |
5 files changed, 5 insertions, 10 deletions
diff --git a/time/clock_getcpuclockid.c b/time/clock_getcpuclockid.c index c148d96c5c..220e2eb016 100644 --- a/time/clock_getcpuclockid.c +++ b/time/clock_getcpuclockid.c @@ -42,6 +42,5 @@ versioned_symbol (libc, __clock_getcpuclockid, clock_getcpuclockid, GLIBC_2_17); /* clock_getcpuclockid moved to libc in version 2.17; old binaries may expect the symbol version it had in librt. */ #if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17) -strong_alias (__clock_getcpuclockid, __clock_getcpuclockid_2); -compat_symbol (libc, __clock_getcpuclockid_2, clock_getcpuclockid, GLIBC_2_2); +compat_symbol (libc, __clock_getcpuclockid, clock_getcpuclockid, GLIBC_2_2); #endif diff --git a/time/clock_getres.c b/time/clock_getres.c index 4b31893849..9099b62672 100644 --- a/time/clock_getres.c +++ b/time/clock_getres.c @@ -32,8 +32,7 @@ versioned_symbol (libc, __clock_getres, clock_getres, GLIBC_2_17); /* clock_getres moved to libc in version 2.17; old binaries may expect the symbol version it had in librt. */ #if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17) -strong_alias (__clock_getres, __clock_getres_2); -compat_symbol (libc, __clock_getres_2, clock_getres, GLIBC_2_2); +compat_symbol (libc, __clock_getres, clock_getres, GLIBC_2_2); #endif stub_warning (clock_getres) diff --git a/time/clock_gettime.c b/time/clock_gettime.c index fdeaaca3f8..e8e129d201 100644 --- a/time/clock_gettime.c +++ b/time/clock_gettime.c @@ -33,8 +33,7 @@ versioned_symbol (libc, __clock_gettime, clock_gettime, GLIBC_2_17); /* clock_gettime moved to libc in version 2.17; old binaries may expect the symbol version it had in librt. */ #if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17) -strong_alias (__clock_gettime, __clock_gettime_2); -compat_symbol (libc, __clock_gettime_2, clock_gettime, GLIBC_2_2); +compat_symbol (libc, __clock_gettime, clock_gettime, GLIBC_2_2); #endif stub_warning (clock_gettime) diff --git a/time/clock_nanosleep.c b/time/clock_nanosleep.c index 7ecb1cfcb8..57b3af2a70 100644 --- a/time/clock_nanosleep.c +++ b/time/clock_nanosleep.c @@ -38,8 +38,7 @@ versioned_symbol (libc, __clock_nanosleep, clock_nanosleep, GLIBC_2_17); /* clock_nanosleep moved to libc in version 2.17; old binaries may expect the symbol version it had in librt. */ #if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17) -strong_alias (__clock_nanosleep, __clock_nanosleep_2); -compat_symbol (libc, __clock_nanosleep_2, clock_nanosleep, GLIBC_2_2); +compat_symbol (libc, __clock_nanosleep, clock_nanosleep, GLIBC_2_2); #endif stub_warning (clock_nanosleep) diff --git a/time/clock_settime.c b/time/clock_settime.c index 7676aaeb23..4df4ec56d1 100644 --- a/time/clock_settime.c +++ b/time/clock_settime.c @@ -33,8 +33,7 @@ versioned_symbol (libc, __clock_settime, clock_settime, GLIBC_2_17); /* clock_settime moved to libc in version 2.17; old binaries may expect the symbol version it had in librt. */ #if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17) -strong_alias (__clock_settime, __clock_settime_2); -compat_symbol (libc, __clock_settime_2, clock_settime, GLIBC_2_2); +compat_symbol (libc, __clock_settime, clock_settime, GLIBC_2_2); #endif stub_warning (clock_settime) |