diff options
Diffstat (limited to 'app/tools/ndk-compat/compat.h')
-rw-r--r-- | app/tools/ndk-compat/compat.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/tools/ndk-compat/compat.h b/app/tools/ndk-compat/compat.h deleted file mode 100644 index 52f6c127..00000000 --- a/app/tools/ndk-compat/compat.h +++ /dev/null @@ -1,16 +0,0 @@ -/* SPDX-License-Identifier: BSD - * - * Copyright © 2017-2019 WireGuard LLC. All Rights Reserved. - * - */ - -#if defined(__ANDROID_API__) && __ANDROID_API__ < 18 -#include <stdio.h> -ssize_t getdelim(char **buf, size_t *bufsiz, int delimiter, FILE *fp); -ssize_t getline(char **buf, size_t *bufsiz, FILE *fp); -#endif - -#if defined(__ANDROID_API__) && __ANDROID_API__ < 24 -char *strchrnul(const char *s, int c); -#endif - |