aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-03-25 17:12:19 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-03-25 17:12:19 +0000
commita40751185f3a7245f73afb45382c23f71dbbcfc3 (patch)
tree9f4a7d3ceab065e7169ec824cbe7249e1c6f6667
parentc019345a3a0f3ee8561e595917b75d6419ee4cc8 (diff)
parent3198850ea125f746efabd1a81e3bd7cfa58cc600 (diff)
downloadbionic-a40751185f3a7245f73afb45382c23f71dbbcfc3.tar.gz
Merge "Unhide __set_errno for backwards compatibility."
-rw-r--r--libc/bionic/__set_errno.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/bionic/__set_errno.cpp b/libc/bionic/__set_errno.cpp
index 4e72093b7..af6a68eb1 100644
--- a/libc/bionic/__set_errno.cpp
+++ b/libc/bionic/__set_errno.cpp
@@ -31,7 +31,8 @@
// This function is called from our assembler syscall stubs.
// C/C++ code should just assign 'errno' instead.
-extern "C" __LIBC_HIDDEN__ int __set_errno(int n) {
+// TODO: this should be __LIBC_HIDDEN__ but was exposed in <errno.h> in the NDK.
+extern "C" int __set_errno(int n) {
errno = n;
return -1;
}