Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
rockchip_bionic
Commits
17a40ffb
Commit
17a40ffb
authored
13 years ago
by
David Turner
Committed by
Android Git Automerger
13 years ago
Browse files
Options
Download
Plain Diff
am
c57fd963
: Merge "NDK: x86 header file has incorrect definition for ptrdiff_t"
* commit '
c57fd963
': NDK: x86 header file has incorrect definition for ptrdiff_t
parents
3906a9c1
c57fd963
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
libc/arch-x86/include/machine/_types.h
libc/arch-x86/include/machine/_types.h
+5
-1
No files found.
libc/arch-x86/include/machine/_types.h
View file @
17a40ffb
...
...
@@ -51,7 +51,11 @@ typedef long int ssize_t;
#endif
#ifndef _PTRDIFF_T
#define _PTRDIFF_T
typedef
long
ptrdiff_t
;
# ifdef __ANDROID__
typedef
int
ptrdiff_t
;
# else
typedef
long
ptrdiff_t
;
# endif
#endif
#include <linux/types.h>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment