X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/beb54af10082dc588132b2c0d32e050028b72c78..78ed81a334dab56aa7a876792a473d67d4359c25:/lib/libc/stdlib/atof.c diff --git a/lib/libc/stdlib/atof.c b/lib/libc/stdlib/atof.c index 38fd0a9f09..c3577abfa2 100644 --- a/lib/libc/stdlib/atof.c +++ b/lib/libc/stdlib/atof.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)atof.c 5.2 (Berkeley) 6/1/90"; +static char sccsid[] = "@(#)atof.c 5.3 (Berkeley) 1/8/93"; #endif /* LIBC_SCCS and not lint */ #include @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)atof.c 5.2 (Berkeley) 6/1/90"; double atof(ascii) - char *ascii; + const char *ascii; { return(strtod(ascii, (char **)NULL)); }