From: Misha Brukman Date: Mon, 14 Jun 2004 16:30:05 +0000 (+0000) Subject: The correct prototype is `int atoi(CONST char*)'. Unbroke AIX build. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8238c27371d318a373deb162b335d0bd06babe7c;p=oota-llvm.git The correct prototype is `int atoi(CONST char*)'. Unbroke AIX build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14173 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/Burg/main.c b/utils/Burg/main.c index dbfdbf4faca..01d77d2a4b4 100644 --- a/utils/Burg/main.c +++ b/utils/Burg/main.c @@ -21,7 +21,7 @@ int main(argc, argv) int argc; char **argv; { int i; - extern int atoi ARGS((char *)); + extern int atoi ARGS((const char *)); for (i = 1; argv[i]; i++) { char **needStr = 0;