diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-07-12 09:23:26 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-07-26 21:37:55 +0000 |
commit | 1b446cd4cf9446fd9e3d986fae854882e6e3c327 (patch) | |
tree | c238816e91e2c19ec749daf57f571ff4f082c40f | |
parent | 5817c56d193515d39f402ac95104b10f6de6e41f (diff) |
src/include: Remove unused 'include <stddef.h>'
Change-Id: I525eb58669d256286e8476b12174d37d1d9aa3bf
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43370
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r-- | src/include/list.h | 2 | ||||
-rw-r--r-- | src/include/thread.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/include/list.h b/src/include/list.h index ca8a520fb7..394487831c 100644 --- a/src/include/list.h +++ b/src/include/list.h @@ -4,8 +4,6 @@ #ifndef __LIST_H__ #define __LIST_H__ -#include <stddef.h> - struct list_node { struct list_node *next; struct list_node *prev; diff --git a/src/include/thread.h b/src/include/thread.h index df307fa6f8..a2c7ed2085 100644 --- a/src/include/thread.h +++ b/src/include/thread.h @@ -2,7 +2,6 @@ #ifndef THREAD_H_ #define THREAD_H_ -#include <stddef.h> #include <stdint.h> #include <bootstate.h> #include <arch/cpu.h> |