]> git.eshelyaron.com Git - emacs.git/commitdiff
Add declaration for atof if not predefined.
authorBrian Fox <bfox@gnu.org>
Wed, 22 Sep 1993 18:32:09 +0000 (18:32 +0000)
committerBrian Fox <bfox@gnu.org>
Wed, 22 Sep 1993 18:32:09 +0000 (18:32 +0000)
src/data.c

index a3d2f46013b20a755b9e45142e3bd2ab8ac29261..9b42d83d09b3995d27749ebf18b03382af2f78bc 100644 (file)
@@ -37,6 +37,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #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;