diff options
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/syscall.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/internal/syscall.h b/src/internal/syscall.h index d768fb64..0b61f34e 100644 --- a/src/internal/syscall.h +++ b/src/internal/syscall.h @@ -193,6 +193,13 @@ hidden long __syscall_ret(unsigned long), #define SYS_sendfile SYS_sendfile64 #endif +#ifndef SYS_clock_gettime +#define SYS_clock_gettime SYS_clock_gettime32 +#endif + +#ifndef SYS_gettimeofday +#define SYS_gettimeofday SYS_gettimeofday_time32 +#endif /* Ensure that the plain syscall names are defined even for "time64-only" * archs. These facilitate callers passing null time arguments, and make |