Merge pull request #2642 from brauner/2018-09-23/android

compiler: __attribute__((noreturn)) on bionic
This commit is contained in:
Stéphane Graber 2018-09-23 20:43:46 +02:00 committed by GitHub
commit e854e63b8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@
#endif
#ifndef _noreturn_
#if __STDC_VERSION__ >= 201112L
#if __STDC_VERSION__ >= 201112L && !IS_BIONIC
#define __noreturn _Noreturn
#else
#define __noreturn __attribute__((noreturn))