Fix barrier for sh4a
[fio.git] / helpers.h
... / ...
CommitLineData
1#ifndef FIO_HELPERS_H
2#define FIO_HELPERS_H
3
4#include "compiler/compiler.h"
5
6struct in_addr;
7
8extern int __weak posix_memalign(void **ptr, size_t align, size_t size);
9extern int __weak posix_fallocate(int fd, off_t offset, off_t len);
10extern int __weak inet_aton(const char *cp, struct in_addr *inp);
11extern int __weak clock_gettime(clockid_t clk_id, struct timespec *ts);
12
13#endif