commit | c2e61c3c01854141b7d5fae30974a0116abe3e42 | [log] [tgz] |
---|---|---|
author | Andrew Hsieh <andrewhsieh@google.com> | Fri Sep 06 17:34:31 2013 +0800 |
committer | Andrew Hsieh <andrewhsieh@google.com> | Fri Sep 06 17:34:31 2013 +0800 |
tree | 88ec6225320d377ec7eac861b4b6b7cf65c60144 | |
parent | 7d80bf6ab4e0df5049ccfc241bfb1408bf2e2931 [diff] |
Fix issue 58135 about _C_LABEL_STRING macro w/o space between literal in C++ Change-Id: Iefc3c090071f3629998515d43907139b07105672
diff --git a/ndk/platforms/android-3/include/sys/cdefs_elf.h b/ndk/platforms/android-3/include/sys/cdefs_elf.h index 1e57470..5d2e0f3 100644 --- a/ndk/platforms/android-3/include/sys/cdefs_elf.h +++ b/ndk/platforms/android-3/include/sys/cdefs_elf.h
@@ -32,7 +32,7 @@ #ifdef __LEADING_UNDERSCORE #define _C_LABEL(x) __CONCAT(_,x) -#define _C_LABEL_STRING(x) "_"x +#define _C_LABEL_STRING(x) "_" x #else #define _C_LABEL(x) x #define _C_LABEL_STRING(x) x