xref: /csrg-svn/lib/libc/stdlib/atof.c (revision 42633)
135480Sbostic /*
235480Sbostic  * Copyright (c) 1988 The Regents of the University of California.
335480Sbostic  * All rights reserved.
435480Sbostic  *
5*42633Sbostic  * %sccs.include.redist.c%
635480Sbostic  */
735480Sbostic 
835480Sbostic #if defined(LIBC_SCCS) && !defined(lint)
9*42633Sbostic static char sccsid[] = "@(#)atof.c	5.2 (Berkeley) 06/01/90";
1035480Sbostic #endif /* LIBC_SCCS and not lint */
1135480Sbostic 
1235480Sbostic #include <stdlib.h>
1335480Sbostic #include <stddef.h>
1435480Sbostic 
1535480Sbostic double
1635480Sbostic atof(ascii)
1735480Sbostic 	char *ascii;
1835480Sbostic {
1935480Sbostic 	return(strtod(ascii, (char **)NULL));
2035480Sbostic }
21