]> git.saurik.com Git - minimal.git/blobdiff - string.h
Doh.
[minimal.git] / string.h
index c3a972437c4610a82e9ed899cf2e7964db404cb0..6a64597ba6f6ebe2969396eb3c3f7c2178cdfd85 100644 (file)
--- a/string.h
+++ b/string.h
@@ -1,3 +1,5 @@
+#include <string.h>
+
 char *strndup_(const char *src, int len) {
     char *dst = malloc(len + 1);
     _assert(dst != NULL);