Skip to content

Commit 3154ea2

Browse files
committed
Fix IWYU warnings
1 parent fcf8af5 commit 3154ea2

File tree

27 files changed

+8
-24
lines changed

27 files changed

+8
-24
lines changed

apps/examples/ringbuf/reader.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* Ring buffer reader.
3131
*/
3232

33-
#include <stddef.h>
3433
#include <stdlib.h>
3534
#include <string.h>
3635
#include <stdint.h>

apps/examples/ringbuf/writer.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* Ring buffer unit tests.
3131
*/
3232

33-
#include <stddef.h>
3433
#include <string.h>
3534
#include <stdint.h>
3635

libs/ao/ao.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
#include <limits.h>
3232
#include <stdbool.h>
33-
#include <stddef.h>
3433
#include <stdint.h>
3534
#include <string.h>
3635

libs/ao/cooperative/port.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
*/
2626

2727
#include <stdbool.h>
28-
#include <stddef.h>
2928
#include <string.h>
3029

3130
#include "bit/bit.h"

libs/bit/bit.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* Bit utilities.
2929
*/
3030

31+
#include <stdbool.h>
3132
#include <stdint.h>
3233

3334
#include "common/macros.h"

libs/event/event.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* Event API implementation.
2929
*/
3030

31+
#include <stdbool.h>
3132
#include <string.h>
3233
#include <stddef.h>
3334

libs/fsm/fsm.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
*/
3030

3131
#include <stdbool.h>
32-
#include <stddef.h>
3332
#include <string.h>
3433

3534
#include "common/macros.h"

libs/fsm/tests/event_queue.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
*/
3434

3535
#include <stdarg.h>
36-
#include <stddef.h>
3736
#include <string.h>
3837

3938
#include "common/alignment.h"

libs/fsm/tests/reenter.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
* SOFTWARE.
2525
*/
2626

27-
#include <stddef.h>
2827
#include <string.h>
2928
#include <stdarg.h>
3029

libs/fsm/tests/spy.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
* SOFTWARE.
2525
*/
2626

27-
#include <stddef.h>
2827
#include <string.h>
2928
#include <stdarg.h>
3029

0 commit comments

Comments
 (0)