diff --git a/src/wg-quick/android.c b/src/wg-quick/android.c index 610e99c..796607d 100644 --- a/src/wg-quick/android.c +++ b/src/wg-quick/android.c @@ -38,16 +38,6 @@ static bool is_exiting = false; -#if defined(__ANDROID_API__) && __ANDROID_API__ < 24 -static char *strchrnul(const char *s, int c) -{ - char *x = strchr(s, c); - if (!x) - return (char *)s + strlen(s); - return x; -} -#endif - static void *xmalloc(size_t size) { void *ret = malloc(size);