Add support for giving multiple --section options
[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 posix_memalign(void **ptr, size_t align, size_t size);
11 extern int __weak posix_fallocate(int fd, off_t offset, off_t len);
12 extern int __weak inet_aton(const char *cp, struct in_addr *inp);
13 extern int __weak clock_gettime(clockid_t clk_id, struct timespec *ts);
14 extern int __weak sync_file_range(int fd, off64_t offset, off64_t nbytes,
15                                         unsigned int flags);
16
17 #endif /* FIO_HELPERS_H_ */