Files
libsodium/builds/wasm32-freestanding/include/sys/time.h
T
Frank Denis ee2972b83e Remove support for WASI
Freestanding WebAssembly is enough, and WASI has always been a
pain to support.
2026-08-26 14:25:41 +02:00

12 lines
154 B
C

#ifndef _SYS_TIME_H
#define _SYS_TIME_H
struct timeval {
long long tv_sec;
long tv_usec;
};
int gettimeofday(struct timeval *tv, void *tz);
#endif