Changeset d735e2e in mainline
- Timestamp:
- 2017-06-04T20:38:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7a99507
- Parents:
- de1712e
- Location:
- boot
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/src/main.c
rde1712e rd735e2e 44 44 #include <macros.h> 45 45 #include <align.h> 46 #include <stdbool.h> 46 47 #include <str.h> 47 48 #include <errno.h> -
boot/arch/ia64/src/ski.c
rde1712e rd735e2e 28 28 29 29 #include <arch/ski.h> 30 #include <stdbool.h> 30 31 #include <stddef.h> 31 32 -
boot/generic/include/stddef.h
rde1712e rd735e2e 39 39 #define NULL ((void *) 0) 40 40 41 #define false 042 #define true 143 44 typedef uint8_t bool;45 46 41 #endif 47 42 -
boot/generic/include/str.h
rde1712e rd735e2e 33 33 #define BOOT_STR_H_ 34 34 35 #include <stdbool.h> 35 36 #include <stddef.h> 36 37 -
boot/generic/src/inflate.c
rde1712e rd735e2e 65 65 */ 66 66 67 #include <stdbool.h> 67 68 #include <stddef.h> 68 69 #include <errno.h> -
boot/generic/src/printf_core.c
rde1712e rd735e2e 37 37 #include <printf.h> 38 38 #include <stdarg.h> 39 #include <stdbool.h> 40 #include <stddef.h> 39 41 #include <macros.h> 40 42 #include <str.h> -
boot/generic/src/str.c
rde1712e rd735e2e 98 98 */ 99 99 100 #include <errno.h> 101 #include <stdbool.h> 102 #include <stddef.h> 100 103 #include <str.h> 101 #include <errno.h>102 104 103 105 /** Check the condition if wchar_t is signed */
Note:
See TracChangeset
for help on using the changeset viewer.