mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 06:32:05 +03:00
11 lines
176 B
C
11 lines
176 B
C
|
#include "time32.h"
|
||
|
#include <time.h>
|
||
|
#include <sys/timex.h>
|
||
|
|
||
|
struct timex32;
|
||
|
|
||
|
int __adjtimex_time32(struct timex32 *tx32)
|
||
|
{
|
||
|
return __clock_adjtime32(CLOCK_REALTIME, tx32);
|
||
|
}
|