aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/termios.h
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-01-28 18:16:08 -0800
committerDan Albert <danalbert@google.com>2015-01-29 17:30:40 -0800
commit466dbe444446da0a8729ae9ac7294f54276e29d7 (patch)
tree6930e91366bb16c0b12197dbf9efd18b458d2eaf /libc/include/termios.h
parent3780aba6352affc7d2dcdad0737cb4254448fcae (diff)
downloadandroid_bionic-466dbe444446da0a8729ae9ac7294f54276e29d7.tar.gz
android_bionic-466dbe444446da0a8729ae9ac7294f54276e29d7.tar.bz2
android_bionic-466dbe444446da0a8729ae9ac7294f54276e29d7.zip
Put back inline definitions if using an old API.
All these inlines were turned in to out of line definitions in L. This brings us a step closer to being able to just use the current bionic headers for the NDK, rather than having many old versions of them. Change-Id: Ie010bc727d78d3742abc577c70f6578db2e68625
Diffstat (limited to 'libc/include/termios.h')
-rw-r--r--libc/include/termios.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/include/termios.h b/libc/include/termios.h
index b9685ca7a..683fde22e 100644
--- a/libc/include/termios.h
+++ b/libc/include/termios.h
@@ -35,6 +35,7 @@
__BEGIN_DECLS
+#if __ANDROID_API__ >= 21
speed_t cfgetispeed(const struct termios*);
speed_t cfgetospeed(const struct termios*);
void cfmakeraw(struct termios*);
@@ -48,6 +49,9 @@ int tcgetattr(int, struct termios*);
pid_t tcgetsid(int);
int tcsendbreak(int, int);
int tcsetattr(int, int, const struct termios*);
+#else
+#include <android/legacy_termios_inlines.h>
+#endif
__END_DECLS