Changes in / [e48947e:395df52] in mainline
- Location:
- uspace
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/hw_struct/hcca.h
re48947e r395df52 40 40 #include <sys/types.h> 41 41 #include <macros.h> 42 #include <assert.h>43 42 44 43 #include "mem_access.h" … … 61 60 } hcca_t; 62 61 63 static_assert(sizeof(hcca_t) == 256);62 STATIC_ASSERT(sizeof(hcca_t) == 256); 64 63 65 64 /** Allocate properly aligned structure. -
uspace/lib/c/arch/abs32le/include/libarch/tls.h
re48947e r395df52 39 39 40 40 #include <libc.h> 41 #include <stddef.h>42 41 43 42 typedef struct { -
uspace/lib/c/arch/abs32le/src/entry.c
re48947e r395df52 32 32 #include <libarch/entry.h> 33 33 #include "../../../generic/private/libc.h" 34 #include <stddef.h>35 34 36 35 void __entry(void) -
uspace/lib/c/arch/abs32le/src/stacktrace.c
re48947e r395df52 32 32 #include <sys/types.h> 33 33 #include <stdbool.h> 34 #include <stddef.h>35 34 #include <stacktrace.h> 36 35 -
uspace/lib/c/arch/abs32le/src/thread_entry.c
re48947e r395df52 30 30 */ 31 31 32 #include <stddef.h>33 32 #include "../../../generic/private/thread.h" 34 33 -
uspace/lib/c/include/macros.h
re48947e r395df52 69 69 #define PADD8 _padd(8, __LINE__) 70 70 71 #define STATIC_ASSERT(cond) int sassert[(cond) ? 1 : -1] 72 71 73 /** @} 72 74 */
Note:
See TracChangeset
for help on using the changeset viewer.