diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2012-07-30 10:58:13 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2012-07-30 10:58:13 +0000 |
commit | 37dfff057418e02f8e5322da12684dd927e3d881 (patch) | |
tree | 40cc44a3d02ed86de24f2117a55680e4f0eb01a0 /SDKs/linux/usr | |
parent | 864a7b98b54e1f984c248f3be83dfcc082a382ea (diff) |
Notes
Diffstat (limited to 'SDKs/linux/usr')
-rw-r--r-- | SDKs/linux/usr/include/stdlib.h | 1 | ||||
-rw-r--r-- | SDKs/linux/usr/include/string.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/SDKs/linux/usr/include/stdlib.h b/SDKs/linux/usr/include/stdlib.h index b3755dff1fbc..2a6617ae3cf1 100644 --- a/SDKs/linux/usr/include/stdlib.h +++ b/SDKs/linux/usr/include/stdlib.h @@ -22,6 +22,7 @@ typedef __SIZE_TYPE__ size_t; void abort(void) __attribute__((__nothrow__)) __attribute__((__noreturn__)); +int atoi(const char *) __attribute__((__nothrow__)); void free(void *) __attribute__((__nothrow__)); char *getenv(const char *) __attribute__((__nothrow__)) __attribute__((__nonnull__(1))); diff --git a/SDKs/linux/usr/include/string.h b/SDKs/linux/usr/include/string.h index 5e91109378ed..bee9d46cddc4 100644 --- a/SDKs/linux/usr/include/string.h +++ b/SDKs/linux/usr/include/string.h @@ -19,6 +19,8 @@ typedef __SIZE_TYPE__ size_t; +int memcmp(const void *, const void *, size_t); +void *memcpy(void *, const void *, size_t); char *strcat(char *, const char *); char *strcpy(char *, const char *); char *strdup(const char *); |