.github
CMakeModules
dist
externals
Vulkan-Headers
cmake-modules
cubeb
discord-rpc
dynarmic
find-modules
getopt
glad
httplib
inih
libressl
crypto
include
compat
arpa
machine
netinet
sys
dirent.h
dirent_msvc.h
err.h
fcntl.h
limits.h
netdb.h
poll.h
pthread.h
readpassphrase.h
resolv.h
stdio.h
stdlib.h
string.h
syslog.h
time.h
unistd.h
win32netcompat.h
openssl
CMakeLists.txt
pqueue.h
tls.h
ssl
tls
.gitignore
CMakeLists.txt
COPYING
ChangeLog
FindLibreSSL.cmake
INSTALL
README.md
README.windows
VERSION
cmake_export_symbol.cmake
ltmain.sh
tap-driver.sh
test-driver
libusb
libzip
mbedtls
microprofile
opus
sirit
soundtouch
xbyak
CMakeLists.txt
patches
src
CMakeLists.txt
LICENSE
README.md
license.txt
61 lines
1.4 KiB
C
Executable File
61 lines
1.4 KiB
C
Executable File
/*
|
|
* Public domain
|
|
* sys/time.h compatibility shim
|
|
*/
|
|
|
|
#ifdef _MSC_VER
|
|
#if _MSC_VER >= 1900
|
|
#include <../ucrt/time.h>
|
|
#else
|
|
#include <../include/time.h>
|
|
#endif
|
|
#else
|
|
#include_next <time.h>
|
|
#endif
|
|
|
|
#ifndef LIBCRYPTOCOMPAT_TIME_H
|
|
#define LIBCRYPTOCOMPAT_TIME_H
|
|
|
|
#ifdef _WIN32
|
|
struct tm *__gmtime_r(const time_t * t, struct tm * tm);
|
|
#define gmtime_r(tp, tm) __gmtime_r(tp, tm)
|
|
#endif
|
|
|
|
#ifndef HAVE_TIMEGM
|
|
time_t timegm(struct tm *tm);
|
|
#endif
|
|
|
|
#ifndef CLOCK_MONOTONIC
|
|
#define CLOCK_MONOTONIC CLOCK_REALTIME
|
|
#endif
|
|
|
|
#ifndef CLOCK_REALTIME
|
|
#define CLOCK_REALTIME 0
|
|
#endif
|
|
|
|
#ifndef _WIN32
|
|
#ifndef HAVE_CLOCK_GETTIME
|
|
typedef int clockid_t;
|
|
int clock_gettime(clockid_t clock_id, struct timespec *tp);
|
|
#endif
|
|
|
|
#ifdef timespecsub
|
|
#define HAVE_TIMESPECSUB
|
|
#endif
|
|
|
|
#ifndef HAVE_TIMESPECSUB
|
|
#define timespecsub(tsp, usp, vsp) \
|
|
do { \
|
|
(vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
|
|
(vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
|
|
if ((vsp)->tv_nsec < 0) { \
|
|
(vsp)->tv_sec--; \
|
|
(vsp)->tv_nsec += 1000000000L; \
|
|
} \
|
|
} while (0)
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|