3 #include <sys/socket.h>
5 #include <netinet/in.h>
8 #include "compiler/compiler.h"
11 #ifndef __NR_fallocate
12 int __weak posix_fallocate(int fd, off_t offset, off_t len)
18 int __weak inet_aton(const char *cp, struct in_addr *inp)
23 int __weak clock_gettime(clockid_t clk_id, struct timespec *ts)
28 ret = gettimeofday(&tv, NULL);
30 ts->tv_sec = tv.tv_sec;
31 ts->tv_nsec = tv.tv_usec * 1000;
36 #ifndef __NR_sync_file_range
37 int __weak sync_file_range(int fd, off64_t offset, off64_t nbytes,