diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-06-23 06:57:53 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-10-27 17:52:05 +0000 |
commit | ede8dd0b9c0dcf1a2f1478e5cb4e035c148b9ed1 (patch) | |
tree | 5e508448b1b823ae1025e56b48a495325b7d3b80 /src/drivers/smmstore | |
parent | 0edf6a59f8b5ad5dd6911078f349357fd36625ab (diff) |
src/{device,drivers}: Use 'include <stdlib.h>' when appropriate
Also, including <types.h>, is supposed to provide stdint and stddef.
Change-Id: I99918a5a77e759bc7d4192d2c3fd6ad493c70248
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33681
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/drivers/smmstore')
-rw-r--r-- | src/drivers/smmstore/store.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/smmstore/store.c b/src/drivers/smmstore/store.c index 3922746eea..dc4a0cf75b 100644 --- a/src/drivers/smmstore/store.c +++ b/src/drivers/smmstore/store.c @@ -18,6 +18,8 @@ #include <commonlib/region.h> #include <console/console.h> #include <smmstore.h> +#include <stdlib.h> +#include <types.h> /* * The region format is still not finalized, but so far it looks like this: |