X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=helpers.c;h=f314ebb96ce7aa4c43302ad5f0e03dbd46ae83fb;hp=987f5b683bb08c0014fb17eae1b1099b3754f722;hb=c5c8bd5c9b265df2c7feb386b5c1fba0a5a34eec;hpb=ed80ddf66943dc2654a92eb77b57c3d68613e9d6 diff --git a/helpers.c b/helpers.c index 987f5b68..f314ebb9 100644 --- a/helpers.c +++ b/helpers.c @@ -1,15 +1,26 @@ #include #include +#include +#include +#include #include "compiler/compiler.h" int __weak posix_memalign(void **ptr, size_t align, size_t size) { *ptr = memalign(align, size); - return *ptr == NULL; + if (*ptr) + return 0; + + return ENOMEM; } int __weak posix_fallocate(int fd, off_t offset, off_t len) { return 0; } + +int __weak inet_aton(const char *cp, struct in_addr *inp) +{ + return 0; +}