summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/tools/wg-quick/android.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/tools/wg-quick/android.c b/src/tools/wg-quick/android.c
index 610e99c..796607d 100644
--- a/src/tools/wg-quick/android.c
+++ b/src/tools/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);