android_mt6572_jiabo/external/fio/os/windows/posix.h
2025-09-05 16:56:03 +08:00

11 lines
278 B
C

#ifndef FIO_WINDOWS_POSIX_H
#define FIO_WINDOWS_POSIX_H
typedef off_t off64_t;
typedef int clockid_t;
extern int clock_gettime(clockid_t clock_id, struct timespec *tp);
extern int inet_aton(const char *, struct in_addr *);
extern int win_to_posix_error(DWORD winerr);
#endif