diff options
author | Aaron Durbin <adurbin@chromium.org> | 2014-01-27 15:08:27 -0600 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2014-01-28 05:55:33 +0100 |
commit | 790e3adc7079bfa40c4932e4633096bff2863b03 (patch) | |
tree | 85b613dd4b7e1168d4e5a7cde01b94e7b78d07cd /src | |
parent | a86e81d472fd80dd5f33d36a02d41c14cb7eb1bd (diff) |
chromeos: include stddef to fix compilation error
As some of the standard definitions were shuffled around
chromeos started failing to build. Correct this.
Change-Id: I9927441ccb2d646e8b3395e6e9f8e8166de74ab0
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/4844
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vendorcode/google/chromeos/chromeos.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vendorcode/google/chromeos/chromeos.h b/src/vendorcode/google/chromeos/chromeos.h index ae715dc153..f51215e12e 100644 --- a/src/vendorcode/google/chromeos/chromeos.h +++ b/src/vendorcode/google/chromeos/chromeos.h @@ -20,6 +20,7 @@ #ifndef __CHROMEOS_H__ #define __CHROMEOS_H__ +#include <stddef.h> #include <stdint.h> /* functions implemented per mainboard: */ |