mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 16:50:06 +00:00
11 lines
239 B
C
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"
|