Revert "Fix parser bug with ranges"
[fio.git] / helpers.h
1 #ifndef FIO_HELPERS_H
2 #define FIO_HELPERS_H
3
4 #include "compiler/compiler.h"
5
6 #include <time.h>
7
8 struct in_addr;
9
10 extern int _weak fallocate(int fd, int mode, off_t offset, off_t len);
11 extern int _weak posix_memalign(void **ptr, size_t align, size_t size);
12 extern int _weak posix_fallocate(int fd, off_t offset, off_t len);
13 extern int _weak inet_aton(const char *cp, struct in_addr *inp);
14 extern int _weak clock_gettime(clockid_t clk_id, struct timespec *ts);
15 extern int _weak sync_file_range(int fd, off64_t offset, off64_t nbytes,
16                                         unsigned int flags);
17
18 #endif /* FIO_HELPERS_H_ */