summaryrefslogtreecommitdiffstats
path: root/libc/upstream-openbsd
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-07-07 16:14:04 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-07-02 20:51:20 +0000
commit2d94ee29f4be528167f1de328226cac259aac738 (patch)
tree50e45eb372f429ea257bfc01557b1f5063bd6499 /libc/upstream-openbsd
parentd11ca4e8c7cbbdd4b37ea82a351966da75907c0d (diff)
parentf79ee064b64af54bce6d3931f4112761edb7d3a9 (diff)
downloadbionic-2d94ee29f4be528167f1de328226cac259aac738.zip
bionic-2d94ee29f4be528167f1de328226cac259aac738.tar.gz
bionic-2d94ee29f4be528167f1de328226cac259aac738.tar.bz2
Merge "Revert "Revert "Hide _tolower_tab_ and _toupper_tab_ on LP64."""
Diffstat (limited to 'libc/upstream-openbsd')
-rw-r--r--libc/upstream-openbsd/android/include/openbsd-compat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/upstream-openbsd/android/include/openbsd-compat.h b/libc/upstream-openbsd/android/include/openbsd-compat.h
index 8618e31..f00d91a 100644
--- a/libc/upstream-openbsd/android/include/openbsd-compat.h
+++ b/libc/upstream-openbsd/android/include/openbsd-compat.h
@@ -17,6 +17,8 @@
#ifndef _BIONIC_OPENBSD_COMPAT_H_included
#define _BIONIC_OPENBSD_COMPAT_H_included
+#include <sys/cdefs.h>
+
#define __USE_BSD
/* OpenBSD's <ctype.h> uses these names, which conflicted with stlport.
@@ -34,4 +36,8 @@
/* OpenBSD has this, but we can't really implement it correctly on Linux. */
#define issetugid() 0
+/* LP32 NDK ctype.h contained references to these. */
+__LIBC64_HIDDEN__ extern const short *_tolower_tab_;
+__LIBC64_HIDDEN__ extern const short *_toupper_tab_;
+
#endif