135480Sbostic /* 235480Sbostic * Copyright (c) 1988 The Regents of the University of California. 335480Sbostic * All rights reserved. 435480Sbostic * 542633Sbostic * %sccs.include.redist.c% 635480Sbostic */ 735480Sbostic 835480Sbostic #if defined(LIBC_SCCS) && !defined(lint) 9*57430Sbostic static char sccsid[] = "@(#)atof.c 5.3 (Berkeley) 01/08/93"; 1035480Sbostic #endif /* LIBC_SCCS and not lint */ 1135480Sbostic 1235480Sbostic #include <stdlib.h> 1335480Sbostic #include <stddef.h> 1435480Sbostic 1535480Sbostic double 1635480Sbostic atof(ascii) 17*57430Sbostic const char *ascii; 1835480Sbostic { 19*57430Sbostic return (strtod(ascii, NULL)); 2035480Sbostic } 21