diff options
author | David 'Digit' Turner <digit@google.com> | 2010-10-11 15:27:39 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-10-11 15:27:39 +0200 |
commit | 1aa6708cc2b7792a647ada960a66a1e0146fb209 (patch) | |
tree | 5508a8b1b3137bc9ef874959c99476aca60db4d5 /libstdc++ | |
parent | b8d2233e8abc30f33be7d7acc7f3ef6e6aabebac (diff) | |
download | bionic-1aa6708cc2b7792a647ada960a66a1e0146fb209.zip bionic-1aa6708cc2b7792a647ada960a66a1e0146fb209.tar.gz bionic-1aa6708cc2b7792a647ada960a66a1e0146fb209.tar.bz2 |
Fix the build. Oops.
(We remove the declaration for on_exit() from the C library headers,
so do the same for the C++ <cstdlib>)
Change-Id: I31a21d5643068cd160724908dd8156863a44d95a
Diffstat (limited to 'libstdc++')
-rw-r--r-- | libstdc++/include/cstdlib | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libstdc++/include/cstdlib b/libstdc++/include/cstdlib index e520543..bb6f5a5 100644 --- a/libstdc++/include/cstdlib +++ b/libstdc++/include/cstdlib @@ -42,7 +42,9 @@ namespace std { using ::exit; using ::abort; using ::atexit; +#if 0 /* MISSING FROM BIONIC */ using ::on_exit; +#endif using ::getenv; using ::putenv; |