packages/net/ctorrent/patches/200-musl-compat.patch
Jo-Philipp Wich 93b1d74c76 ctorrent: fix musl compatibility
Add missing `sys/types.h` include to `strnstr()` replacement code in
`compat.c` in order to declare `ssize_t` type under musl.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-30 11:09:46 +02:00

10 lines
280 B
Diff

--- a/compat.c
+++ b/compat.c
@@ -63,6 +63,7 @@ int snprintf(char *str, size_t size, con
#ifndef HAVE_STRNSTR
#include <string.h>
+#include <sys/types.h>
/* FUNCTION PROGRAMER: Siberiaic Sang */
char *strnstr(const char *haystack, const char *needle, size_t haystacklen)
{