commit | 6236ebd2d6a869888132b55ca333aaa7f8c55d0d | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Tue Jun 08 19:15:18 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Jun 08 19:15:18 2021 +0000 |
tree | d3fae9f4e07febb6525edcccadf539f68ff61fc7 | |
parent | 9af7da4ff881fbbdb44915d4083f63fba88f9233 [diff] | |
parent | 504d0488ad1bd1531e9cff3de4186160f9f47f72 [diff] |
Merge "Mark abort(3) as `nomerge`."
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index d7fdb4a..583287f 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h
@@ -41,7 +41,7 @@ #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);