]> git.sur5r.net Git - i3/i3/commitdiff
Add missing function prototype for strndup on Darwin (Thanks Marcus)
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 17 Jul 2011 20:18:00 +0000 (22:18 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 17 Jul 2011 20:18:00 +0000 (22:18 +0200)
include/util.h

index f3ab28ba5a1b0c196d01b5984a9ca5f2bbff8f14..0e48843cfb36b3d9f8f280749dddc464f0b51917 100644 (file)
@@ -176,6 +176,15 @@ void *memmem(const void *l, size_t l_len, const void *s, size_t s_len);
 #endif
 
 #if defined(__APPLE__)
+
+/*
+ * Taken from FreeBSD
+ * Returns a pointer to a new string which is a duplicate of the
+ * string, but only copies at most n characters.
+ *
+ */
+char *strndup(const char *str, size_t n);
+
 #endif
 
 #endif