diff options
author | Guillem Jover <guillem@hadrons.org> | 2008-06-18 08:09:51 +0300 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2008-06-18 08:09:51 +0300 |
commit | 20bf55ffa5a56d3ee062aa199e5b3033ea29c52a (patch) | |
tree | 56b24b21821324ef43ea084ecc75810f52372147 | |
parent | d699e4bc0e5196520dcb23e6768d977570de42f8 (diff) | |
download | libbsd-20bf55ffa5a56d3ee062aa199e5b3033ea29c52a.tar.gz |
Include missing stddef.h
-rw-r--r-- | include/bsd/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |