Fix atoi stub for linux introduced in r157573. This fixes compiler-rt build on linux.

llvm-svn: 157600
This commit is contained in:
Alexey Samsonov 2012-05-29 06:55:01 +00:00
parent b7fdecd2ec
commit 80bc3b0d2b
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
typedef __SIZE_TYPE__ size_t;
void abort(void) __attribute__((__nothrow__)) __attribute__((__noreturn__));
void atoi(const char *) __attribute__((__nothrow__));
int atoi(const char *) __attribute__((__nothrow__));
void free(void *) __attribute__((__nothrow__));
char *getenv(const char *) __attribute__((__nothrow__))
__attribute__((__nonnull__(1)));