Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
compat
time32
adjtimex_time32.c
pretty
plain
permalink
blame
history
•
10 lines
•
176 B
1
#include "time32.h"
2
#include <time.h>
3
#include <sys/timex.h>
4
5
struct timex32;
6
7
int __adjtimex_time32(struct timex32 *tx32)
8
{
9
	return __clock_adjtime32(CLOCK_REALTIME, tx32);
10
}