summaryrefslogtreecommitdiff
path: root/SDKs
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-03-20 23:21:08 +0000
committerBill Wendling <isanbard@gmail.com>2013-03-20 23:21:08 +0000
commitedcb288a81c4e6abd6537342295750d9d1223349 (patch)
tree6113b187d592427c3c00e7c82491bd8acc99d66d /SDKs
parent84b46d300c7a4f1c3ea4e452791de7733ce0d143 (diff)
Add declaration for linux.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@177601 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'SDKs')
-rw-r--r--SDKs/linux/usr/include/stdlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/SDKs/linux/usr/include/stdlib.h b/SDKs/linux/usr/include/stdlib.h
index 2a6617ae3..e6b8bf710 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 atexit(void (*)(void)) __attribute__((__nothrow__));
int atoi(const char *) __attribute__((__nothrow__));
void free(void *) __attribute__((__nothrow__));
char *getenv(const char *) __attribute__((__nothrow__))