Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: fusl/arch/arm/bits/stdint.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/arch/arm/bits/stdarg.h ('k') | fusl/arch/arm/bits/syscall.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 typedef int32_t int_fast16_t;
2 typedef int32_t int_fast32_t;
3 typedef uint32_t uint_fast16_t;
4 typedef uint32_t uint_fast32_t;
5
6 #define INT_FAST16_MIN INT32_MIN
7 #define INT_FAST32_MIN INT32_MIN
8
9 #define INT_FAST16_MAX INT32_MAX
10 #define INT_FAST32_MAX INT32_MAX
11
12 #define UINT_FAST16_MAX UINT32_MAX
13 #define UINT_FAST32_MAX UINT32_MAX
14
15 #define INTPTR_MIN INT32_MIN
16 #define INTPTR_MAX INT32_MAX
17 #define UINTPTR_MAX UINT32_MAX
18 #define PTRDIFF_MIN INT32_MIN
19 #define PTRDIFF_MAX INT32_MAX
20 #define SIZE_MAX UINT32_MAX
OLDNEW
« no previous file with comments | « fusl/arch/arm/bits/stdarg.h ('k') | fusl/arch/arm/bits/syscall.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698