We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea5d37f commit a643836Copy full SHA for a643836
libc/src/__support/OSUtil/linux/vdso_sym.h
@@ -44,8 +44,8 @@ template <VDSOSym sym> LIBC_INLINE constexpr auto dispatcher() {
44
else if constexpr (sym == VDSOSym::ClockGetTime64)
45
return static_cast<int (*)(clockid_t, __kernel_timespec *)>(nullptr);
46
else if constexpr (sym == VDSOSym::GetTimeOfDay)
47
- return static_cast<int (*)(timeval *__restrict, timezone *__restrict)>(
48
- nullptr);
+ return static_cast<int (*)(timeval *__restrict,
+ struct timezone *__restrict)>(nullptr);
49
else if constexpr (sym == VDSOSym::GetCpu)
50
return static_cast<int (*)(unsigned *, unsigned *, getcpu_cache *)>(
51
nullptr);
0 commit comments