Avoid potential build error

This commit is contained in:
Justine Tunney 2024-09-05 16:11:03 -07:00
parent 03875beadb
commit 0d6ff04b87
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3 changed files with 6 additions and 3 deletions

View file

@ -40,9 +40,9 @@ static clock_gettime_f *__clock_gettime_get(void) {
return cgt;
} else if (__syslib) {
return (void *)__syslib->__clock_gettime;
#ifdef __x86_64__
} else if (IsWindows()) {
return sys_clock_gettime_nt;
#ifdef __x86_64__
} else if (IsXnu()) {
return sys_clock_gettime_xnu;
#endif