Index: third_party/tcmalloc/chromium/src/base/linux_syscall_support.h |
diff --git a/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h b/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h |
index bdbc4b7e3bbfc023f9ea83c34cf59974ac09a068..6c3be701cd8d38643667304dd597df8f0b92983c 100644 |
--- a/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h |
+++ b/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h |
@@ -157,7 +157,9 @@ extern "C" { |
#include <sys/types.h> |
#if defined(__ANDROID__) |
#include <sys/syscall.h> |
-#include <sys/linux-syscalls.h> |
+#ifndef ANDROID_NON_SDK_BUILD |
+# include <sys/linux-syscalls.h> |
willchan no longer on Chromium
2013/07/18 16:20:26
Is this a typo? Why is there a space between '#' a
mnaganov (inactive)
2013/07/18 16:24:37
It's indentation within preprocessor directives. E
mnaganov (inactive)
2013/07/18 16:26:02
Sorry, the link doesn't work. Just search for "# i
willchan no longer on Chromium
2013/07/18 16:35:21
I learned some new things today :) Thanks! Never h
|
+#endif |
#else |
#include <syscall.h> |
#endif |