Add helpers include file
[fio.git] / helpers.c
index 987f5b683bb08c0014fb17eae1b1099b3754f722..f314ebb96ce7aa4c43302ad5f0e03dbd46ae83fb 100644 (file)
--- a/helpers.c
+++ b/helpers.c
@@ -1,15 +1,26 @@
 #include <malloc.h>
 #include <stdlib.h>
+#include <errno.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
 
 #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;
+}