move fallocate64 declaration under _LARGEFILE64_SOURCE feature test
[musl] / compat / time32 / adjtimex_time32.c
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 }