mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
10 lines
176 B
C
Vendored
10 lines
176 B
C
Vendored
#include "time32.h"
|
|
#include <time.h>
|
|
#include <sys/timex.h>
|
|
|
|
struct timex32;
|
|
|
|
int __adjtimex_time32(struct timex32 *tx32)
|
|
{
|
|
return __clock_adjtime32(CLOCK_REALTIME, tx32);
|
|
}
|