diff src/data.c @ 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 1fc792473491
children ff23fe23f58c
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;