glibc/sysdeps/unix/sysv/linux/x86_64/timespec_get.c
2012-01-01 07:17:21 -05:00

11 lines
239 B
C

#include "bits/libc-vdso.h"
#ifdef SHARED
# define INTERNAL_GETTIME(id, tp) \
({ long int (*f) (clockid_t, struct timespec *) = __vdso_clock_gettime; \
PTR_DEMANGLE (f); \
f (id, tp); })
#endif
#include "../timespec_get.c"