diff options
author | andrew <andrew@FreeBSD.org> | 2012-07-30 10:58:13 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2012-07-30 10:58:13 +0000 |
commit | cfeab007a554034f0b3ab4a677cf9dd2696c12f9 (patch) | |
tree | 40cc44a3d02ed86de24f2117a55680e4f0eb01a0 /SDKs/linux/usr/include | |
parent | 07af089f1449ec5506ca7ede5b593e11a0f48603 (diff) | |
download | FreeBSD-src-cfeab007a554034f0b3ab4a677cf9dd2696c12f9.zip FreeBSD-src-cfeab007a554034f0b3ab4a677cf9dd2696c12f9.tar.gz |
Import compiler-rt r160957.
Diffstat (limited to 'SDKs/linux/usr/include')
-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 b3755df..2a6617a 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 5e91109..bee9d46 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 *); |