aboutsummaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-02-19 22:13:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-02-19 22:13:53 +0000
commitccd403161cdcc88a0ffcaecd1bc707e2d4c88a1c (patch)
tree102909efb095eaa603f94de0617720b5364875b9 /libc
parent593abb7b593a34d501c90512953a7368add6d185 (diff)
parentc641cafbc387849510d7f408e85f72fa3608916d (diff)
downloadandroid_bionic-ccd403161cdcc88a0ffcaecd1bc707e2d4c88a1c.tar.gz
android_bionic-ccd403161cdcc88a0ffcaecd1bc707e2d4c88a1c.tar.bz2
android_bionic-ccd403161cdcc88a0ffcaecd1bc707e2d4c88a1c.zip
Merge "use architecture-specific ssize_t definition"
Diffstat (limited to 'libc')
-rw-r--r--libc/include/sys/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/sys/types.h b/libc/include/sys/types.h
index 8cfeeb69d..459159fe9 100644
--- a/libc/include/sys/types.h
+++ b/libc/include/sys/types.h
@@ -85,7 +85,7 @@ typedef .... pthread_t;
#ifndef _SSIZE_T_DEFINED_
#define _SSIZE_T_DEFINED_
-typedef long int ssize_t;
+typedef __kernel_ssize_t ssize_t;
#endif
typedef __kernel_suseconds_t suseconds_t;