macro and text revision (-mdoc version 3)
[unix-history] / usr / src / lib / libc / stdlib / atof.c
CommitLineData
2bf355b2
KB
1/*
2 * Copyright (c) 1988 The Regents of the University of California.
3 * All rights reserved.
4 *
019bea33 5 * %sccs.include.redist.c%
2bf355b2
KB
6 */
7
8#if defined(LIBC_SCCS) && !defined(lint)
019bea33 9static char sccsid[] = "@(#)atof.c 5.2 (Berkeley) %G%";
2bf355b2
KB
10#endif /* LIBC_SCCS and not lint */
11
12#include <stdlib.h>
13#include <stddef.h>
14
15double
16atof(ascii)
17 char *ascii;
18{
19 return(strtod(ascii, (char **)NULL));
20}