summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2016-02-05 16:53:13 -0800
committerChristopher Ferris <cferris@google.com>2016-02-05 16:53:13 -0800
commit5e0e6ac7e2cf29ce5dcdbb58e3bade4d877b9b1e (patch)
tree99cff2e7b369eb9cc389614b2c55ea86a679ad53
parent4a5dafcc3093d55fc9d135b9a18c73bd96bcf3b1 (diff)
downloadextras-5e0e6ac7e2cf29ce5dcdbb58e3bade4d877b9b1e.tar.gz
Add __s32 define.
This is needed for the new v4.4.1 kernel headers. Bug: 23789423 Change-Id: I3053cdf895793c38ff1af41ebb560c13fda23215
-rw-r--r--simpleperf/nonlinux_support/include/linux/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/simpleperf/nonlinux_support/include/linux/types.h b/simpleperf/nonlinux_support/include/linux/types.h
index 30478eb2..6af5b8c3 100644
--- a/simpleperf/nonlinux_support/include/linux/types.h
+++ b/simpleperf/nonlinux_support/include/linux/types.h
@@ -19,5 +19,6 @@
typedef uint8_t __u8;
typedef uint16_t __u16;
typedef uint32_t __u32;
+typedef int32_t __s32;
typedef uint64_t __u64;
typedef int64_t __s64;