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
This commit is contained in:
Randall Spangler
2012-05-07 16:24:13 -07:00
parent d01657060e
commit cbdd518422
4 changed files with 51 additions and 41 deletions

View File

@@ -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);