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

Side by Side Diff: fusl/include/alltypes.h.in

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/include/alloca.h ('k') | fusl/include/ar.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 unsigned _Addr size_t;
2 TYPEDEF unsigned _Addr uintptr_t;
3 TYPEDEF _Addr ptrdiff_t;
4 TYPEDEF _Addr ssize_t;
5 TYPEDEF _Addr intptr_t;
6 TYPEDEF _Addr regoff_t;
7 TYPEDEF _Reg register_t;
8
9 TYPEDEF signed char int8_t;
10 TYPEDEF short int16_t;
11 TYPEDEF int int32_t;
12 TYPEDEF _Int64 int64_t;
13 TYPEDEF _Int64 intmax_t;
14 TYPEDEF unsigned char uint8_t;
15 TYPEDEF unsigned short uint16_t;
16 TYPEDEF unsigned int uint32_t;
17 TYPEDEF unsigned _Int64 uint64_t;
18 TYPEDEF unsigned _Int64 u_int64_t;
19 TYPEDEF unsigned _Int64 uintmax_t;
20
21 TYPEDEF unsigned mode_t;
22 TYPEDEF unsigned _Reg nlink_t;
23 TYPEDEF _Int64 off_t;
24 TYPEDEF unsigned _Int64 ino_t;
25 TYPEDEF unsigned _Int64 dev_t;
26 TYPEDEF long blksize_t;
27 TYPEDEF _Int64 blkcnt_t;
28 TYPEDEF unsigned _Int64 fsblkcnt_t;
29 TYPEDEF unsigned _Int64 fsfilcnt_t;
30
31 TYPEDEF unsigned wint_t;
32 TYPEDEF unsigned long wctype_t;
33
34 TYPEDEF void * timer_t;
35 TYPEDEF int clockid_t;
36 TYPEDEF long clock_t;
37 STRUCT timeval { time_t tv_sec; suseconds_t tv_usec; };
38 STRUCT timespec { time_t tv_sec; long tv_nsec; };
39
40 TYPEDEF int pid_t;
41 TYPEDEF unsigned id_t;
42 TYPEDEF unsigned uid_t;
43 TYPEDEF unsigned gid_t;
44 TYPEDEF int key_t;
45 TYPEDEF unsigned useconds_t;
46
47 #ifdef __cplusplus
48 TYPEDEF unsigned long pthread_t;
49 #else
50 TYPEDEF struct __pthread * pthread_t;
51 #endif
52 TYPEDEF int pthread_once_t;
53 TYPEDEF unsigned pthread_key_t;
54 TYPEDEF int pthread_spinlock_t;
55 TYPEDEF struct { unsigned __attr; } pthread_mutexattr_t;
56 TYPEDEF struct { unsigned __attr; } pthread_condattr_t;
57 TYPEDEF struct { unsigned __attr; } pthread_barrierattr_t;
58 TYPEDEF struct { unsigned __attr[2]; } pthread_rwlockattr_t;
59
60 TYPEDEF struct _IO_FILE FILE;
61
62 TYPEDEF struct __mbstate_t { unsigned __opaque1, __opaque2; } mbstate_t;
63
64 TYPEDEF struct __locale_struct * locale_t;
65
66 TYPEDEF struct __sigset_t { unsigned long __bits[128/sizeof(long)]; } sigset_t;
67
68 STRUCT iovec { void *iov_base; size_t iov_len; };
69
70 TYPEDEF unsigned socklen_t;
71 TYPEDEF unsigned short sa_family_t;
72
73 #undef _Addr
74 #undef _Int64
75 #undef _Reg
OLDNEW
« no previous file with comments | « fusl/include/alloca.h ('k') | fusl/include/ar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698