summaryrefslogtreecommitdiff
path: root/include/util.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-05-07 16:24:13 -0700
committerRandall Spangler <rspangler@chromium.org>2012-05-07 16:26:43 -0700
commitcbdd518422ad794b6bf660bc85aff29edf9bdbc2 (patch)
treee4473ad508dfa2d766e1de4b8726ed348f3e7562 /include/util.h
parentd01657060e33bd08b7b544804e1698b0bf4165c0 (diff)
downloadchrome-ec-cbdd518422ad794b6bf660bc85aff29edf9bdbc2.tar.gz
Clean up sysjump struct parsing and add memmove()
Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=chrome-os-partner:9447 TEST=update from old EC 517 to this one Change-Id: I275b5bf6c4ae1ab6e0c0a05cf9260314d644c79b
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h
index 5b9dd364db..6f8fe1c581 100644
--- a/include/util.h
+++ b/include/util.h
@@ -56,6 +56,7 @@ int isspace(int c);
int isalpha(int c);
void *memcpy(void *dest, const void *src, int len);
void *memset(void *dest, int c, int len);
+void *memmove(void *dest, const void *src, int len);
int strcasecmp(const char *s1, const char *s2);
int strlen(const char *s);
int strtoi(const char *nptr, char **endptr, int base);