Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

20 lines
302 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)atof.c 1.1 92/07/30 Copyr 1986 Sun Micro";
#endif
/*
* Copyright (c) 1986 by Sun Microsystems, Inc.
*/
#include <stdio.h>
extern double
strtod();
double
atof(cp)
char *cp;
{
return strtod(cp, (char **) NULL);
}