am a4075118: Merge "Unhide __set_errno for backwards compatibility."

* commit 'a40751185f3a7245f73afb45382c23f71dbbcfc3':
  Unhide __set_errno for backwards compatibility.
This commit is contained in:
Elliott Hughes 2013-03-25 10:22:43 -07:00 committed by Android Git Automerger
commit 93f3811b74

View File

@ -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;
}