Commit 20bf55ffa5a56d3ee062aa199e5b3033ea29c52a

Guillem Jover 2008-06-18T08:09:51

Include missing stddef.h

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/include/bsd/string.h b/include/bsd/string.h
index b734ba7..d19f7b3 100644
--- a/include/bsd/string.h
+++ b/include/bsd/string.h
@@ -28,6 +28,7 @@
 #define LIBBSD_STRING_H
 
 #include <sys/types.h>
+#include <stddef.h>
 #include <stdio.h>
 
 size_t strlcpy(char *dst, const char *src, size_t siz);