mirror of
https://github.com/ziglang/zig.git
synced 2025-12-19 12:43:13 +00:00
8 lines
120 B
C
Vendored
8 lines
120 B
C
Vendored
#include <sys/timex.h>
|
|
#include <time.h>
|
|
|
|
int adjtimex(struct timex *tx)
|
|
{
|
|
return clock_adjtime(CLOCK_REALTIME, tx);
|
|
}
|