Don't unconditionally use clock_gettime vsyscall on x86-64
[platform/upstream/glibc.git] / sysdeps / unix / sysv / linux / x86_64 / clock_gettime.c
1 #include "bits/libc-vdso.h"
2
3 #ifdef SHARED
4 # define SYSCALL_GETTIME(id, tp) \
5   (*__vdso_clock_gettime) (id, tp)
6 # define INTERNAL_GETTIME(id, tp) \
7   (*__vdso_clock_gettime) (id, tp)
8 #endif
9
10 #include "../clock_gettime.c"