diff options
author | Elliott Hughes <enh@google.com> | 2014-02-03 23:55:13 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-02-03 23:55:14 +0000 |
commit | a122c376ef0737454a592cf44f50beabe154e9e3 (patch) | |
tree | da12d1c2995aeeea5d08107025b76c31f28aaa6e | |
parent | fb4da1e7b749b4cf6843515517e839efa1ee24c7 (diff) | |
parent | 8d60cc63163df81938305632e1b7474aeda17d52 (diff) | |
download | android_bionic-a122c376ef0737454a592cf44f50beabe154e9e3.tar.gz android_bionic-a122c376ef0737454a592cf44f50beabe154e9e3.tar.bz2 android_bionic-a122c376ef0737454a592cf44f50beabe154e9e3.zip |
Merge "Use __inline__ for fortify."
-rw-r--r-- | libc/include/sys/cdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/sys/cdefs.h b/libc/include/sys/cdefs.h index b4dad74f8..9fa62df72 100644 --- a/libc/include/sys/cdefs.h +++ b/libc/include/sys/cdefs.h @@ -546,7 +546,7 @@ #define __bos0(s) __builtin_object_size((s), 0) #define __BIONIC_FORTIFY_INLINE \ - extern inline \ + extern __inline__ \ __attribute__ ((always_inline)) \ __attribute__ ((gnu_inline)) #endif |