File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 11--- a/vendor/circle-stdlib/libs/circle/include/circle/types.h
22+++ b/vendor/circle-stdlib/libs/circle/include/circle/types.h
3- @@ -21,14 +21,15 @@
3+ @@ -21,14 +21,19 @@
44 #define _circle_types_h
55
66 #include <assert.h>
77+ #include <stdint.h>
8+ +
9+ + // Add missing errno definitions for strsignal.c
10+ + #define ERESTART 512
11+ + #define ENOTSUP 524
812
913 typedef unsigned char u8;
10- typedef unsigned short u16;
14+ typedef unsigned short u16
1115- typedef unsigned int u32;
1216+ typedef uint32_t u32;
1317
1418 typedef signed char s8;
15- typedef signed short s16;
19+ typedef signed short s16
1620- typedef signed int s32;
1721+ typedef int32_t s32;
1822
1923 #if AARCH == 32
20- typedef unsigned long long u64;
24+ typedef unsigned long long u64;
You can’t perform that action at this time.
0 commit comments