aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-06-08 19:15:18 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-06-08 19:15:18 +0000
commit6236ebd2d6a869888132b55ca333aaa7f8c55d0d (patch)
treed3fae9f4e07febb6525edcccadf539f68ff61fc7
parent9af7da4ff881fbbdb44915d4083f63fba88f9233 (diff)
parent504d0488ad1bd1531e9cff3de4186160f9f47f72 (diff)
downloadbionic-6236ebd2d6a869888132b55ca333aaa7f8c55d0d.tar.gz
Merge "Mark abort(3) as `nomerge`."
-rw-r--r--libc/include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h
index d7fdb4a52..583287f42 100644
--- a/libc/include/stdlib.h
+++ b/libc/include/stdlib.h
@@ -41,7 +41,7 @@ __BEGIN_DECLS
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
-__noreturn void abort(void);
+__noreturn void abort(void) __attribute__((__nomerge__));
__noreturn void exit(int __status);
#if __ANDROID_API__ >= 21
__noreturn void _Exit(int __status) __INTRODUCED_IN(21);