Fio 1.36-rc1
[fio.git] / helpers.c
index 21b991361c7545bb6b7d60cd563f0f4bc1312f10..f314ebb96ce7aa4c43302ad5f0e03dbd46ae83fb 100644 (file)
--- a/helpers.c
+++ b/helpers.c
@@ -1,6 +1,8 @@
 #include <malloc.h>
 #include <stdlib.h>
 #include <errno.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
 
 #include "compiler/compiler.h"
 
@@ -17,3 +19,8 @@ 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;
+}