aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-27 00:48:58 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-27 19:24:04 +0200
commitadc7bb06cdda7c52aa884db137144b2eb7869a48 (patch)
tree2d0b78e98fc15932a0cb3cf0d50320e75130db76 /src
parentb5866f2fb65cd703b29bcb8d97b8ddf079a77eda (diff)
ChromeOS: add missing string.h in gnvs.c
string.h is required to build with the reference toolchain. Change-Id: I9fd8d2ea8fc676d3502989cbcc7aefe3b2d738b6 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/935 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/vendorcode/google/chromeos/gnvs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vendorcode/google/chromeos/gnvs.c b/src/vendorcode/google/chromeos/gnvs.c
index 8d0f9bb222..6b545f4a50 100644
--- a/src/vendorcode/google/chromeos/gnvs.c
+++ b/src/vendorcode/google/chromeos/gnvs.c
@@ -18,6 +18,7 @@
*/
#include <types.h>
+#include <string.h>
#include <cbfs.h>
#include <console/console.h>
#include "gnvs.h"