summaryrefslogtreecommitdiffstats
path: root/SDKs/linux/usr/include/stdlib.h
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2013-05-27 18:27:12 +0000
committered <ed@FreeBSD.org>2013-05-27 18:27:12 +0000
commit2f7fa77a0a85c00fd0cce298851e9577b98ccfe8 (patch)
tree50f0ab80515576749ef638dd0766b70a65904bfa /SDKs/linux/usr/include/stdlib.h
parent254a83b703ce3576b1aea35fdd5308aaf1d05f4b (diff)
downloadFreeBSD-src-2f7fa77a0a85c00fd0cce298851e9577b98ccfe8.zip
FreeBSD-src-2f7fa77a0a85c00fd0cce298851e9577b98ccfe8.tar.gz
Import compiler-rt r182741.
Diffstat (limited to 'SDKs/linux/usr/include/stdlib.h')
-rw-r--r--SDKs/linux/usr/include/stdlib.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/SDKs/linux/usr/include/stdlib.h b/SDKs/linux/usr/include/stdlib.h
index 2a6617a..966b29d 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__))
@@ -29,5 +30,7 @@ char *getenv(const char *) __attribute__((__nothrow__))
__attribute__((__warn_unused_result__));
void *malloc(size_t) __attribute__((__nothrow__)) __attribute((__malloc__))
__attribute__((__warn_unused_result__));
+void *realloc(void *, size_t) __attribute__((__nothrow__)) __attribute((__malloc__))
+ __attribute__((__warn_unused_result__));
#endif /* __STDLIB_H__ */
OpenPOWER on IntegriCloud