syncthing: update to 0.14.39 (#1655)
[termux-packages] / ndk-patches / pty.h.patch
1 In Termux these are implemented in the libutil package to support android-21.
2
3 diff -u -r /home/fornwall/lib/android-ndk/sysroot/usr/include/pty.h ./usr/include/pty.h
4 --- /home/fornwall/lib/android-ndk/sysroot/usr/include/pty.h 2017-06-20 17:41:56.000000000 +0200
5 +++ ./usr/include/pty.h 2017-07-02 11:42:39.244882732 +0200
6 @@ -37,10 +37,8 @@
7 __BEGIN_DECLS
8
9
10 -#if __ANDROID_API__ >= 23
11 -int openpty(int*, int*, char*, const struct termios*, const struct winsize*) __INTRODUCED_IN(23);
12 -int forkpty(int*, char*, const struct termios*, const struct winsize*) __INTRODUCED_IN(23);
13 -#endif /* __ANDROID_API__ >= 23 */
14 +int openpty(int*, int*, char*, const struct termios*, const struct winsize*);
15 +int forkpty(int*, char*, const struct termios*, const struct winsize*);
16
17
18 __END_DECLS