aboutsummaryrefslogtreecommitdiff
path: root/rt/clock-compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'rt/clock-compat.c')
-rw-r--r--rt/clock-compat.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/rt/clock-compat.c b/rt/clock-compat.c
index c603f40..d8ced3cd 100644
--- a/rt/clock-compat.c
+++ b/rt/clock-compat.c
@@ -30,14 +30,16 @@
#if HAVE_IFUNC
# undef INIT_ARCH
# define INIT_ARCH()
-# define COMPAT_REDIRECT(name, proto, arglist) libc_ifunc (name, &__##name)
+# define COMPAT_REDIRECT(name, proto, arglist) libc_ifunc (name, &__##name) \
+ compat_symbol (librt, name, name, GLIBC_2_2);
#else
# define COMPAT_REDIRECT(name, proto, arglist) \
int \
name proto \
{ \
return __##name arglist; \
- }
+ } \
+ compat_symbol (librt, name, name, GLIBC_2_2);
#endif
COMPAT_REDIRECT (clock_getres,