diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-07-10 10:58:57 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-08-18 12:15:44 +0000 |
commit | a3759e3a7b5c5a9910624e00e9f315ca9c35dc2e (patch) | |
tree | 4cd3dfdc08a89ea4e700e3352c3790b205f9e1be /src/lib | |
parent | abfacd863d90534f8fc3f0665c34e1645533c0e1 (diff) |
src: Remove unused 'include <stddef.h>
Change-Id: Iae1e875b466f8a195653d897efa1b297c61ad0a5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41912
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/timer_queue.c | 2 | ||||
-rw-r--r-- | src/lib/timestamp.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/timer_queue.c b/src/lib/timer_queue.c index f368409ef1..badc600d64 100644 --- a/src/lib/timer_queue.c +++ b/src/lib/timer_queue.c @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <stddef.h> + #include <timer.h> #define MAX_TIMER_QUEUE_ENTRIES 64 diff --git a/src/lib/timestamp.c b/src/lib/timestamp.c index 24d80ea89a..5121eb859c 100644 --- a/src/lib/timestamp.c +++ b/src/lib/timestamp.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <assert.h> -#include <stddef.h> #include <stdint.h> #include <console/console.h> #include <cbmem.h> |