changeset 4780:64cdff1c8ad1

Add declaration for atof if not predefined.
author Brian Fox <bfox@gnu.org>
date Wed, 22 Sep 1993 18:32:09 +0000
parents 611531d01474
children 6cb9d6d6a46d
files src/data.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/data.c	Wed Sep 22 18:27:28 1993 +0000
+++ b/src/data.c	Wed Sep 22 18:32:09 1993 +0000
@@ -37,6 +37,10 @@
 #include <math.h>
 #endif /* LISP_FLOAT_TYPE */
 
+#if !defined (atof)
+extern double atof ();
+#endif /* !atof */
+
 Lisp_Object Qnil, Qt, Qquote, Qlambda, Qsubr, Qunbound;
 Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
 Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range;