Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
linux
adjtimex.c
pretty
plain
permalink
blame
history
•
7 lines
•
120 B
1
#include <sys/timex.h>
2
#include <time.h>
3
4
int adjtimex(struct timex *tx)
5
{
6
	return clock_adjtime(CLOCK_REALTIME, tx);
7
}