summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2017-01-27 15:02:27 +0900
committerHomu <homu@barosl.com>2017-01-27 15:02:27 +0900
commit109b0e867757f377029af84499369812e41cc595 (patch)
tree2710c6c2861fc3c7ec034ea90ea2dd49f516c51c
parentd4ba02f99458a6cea6f992ad68cbf9ad0cd92f1d (diff)
parentc1a763c34ed4726c08a37fd2125e00d2a5a75b6f (diff)
downloadnix-109b0e867757f377029af84499369812e41cc595.zip
Auto merge of #499 - asomers:strcmp, r=posborne
Fix a compiler warning on FreeBSD
-rw-r--r--nix-test/src/sizes.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/nix-test/src/sizes.c b/nix-test/src/sizes.c
index 97a9b4a3..ca862003 100644
--- a/nix-test/src/sizes.c
+++ b/nix-test/src/sizes.c
@@ -1,5 +1,7 @@
-#include "sys/socket.h"
-#include "sys/uio.h"
+#include <sys/socket.h>
+#include <sys/uio.h>
+
+#include <string.h>
#define SIZE_OF_T(TYPE) \
do { \