From: Brian Fox Date: Wed, 22 Sep 1993 18:32:09 +0000 (+0000) Subject: Add declaration for atof if not predefined. X-Git-Tag: emacs-19.34~11071 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=024ec58f11e9bb842a801e9f812c6dd06efdb9ed;p=emacs.git Add declaration for atof if not predefined. --- diff --git a/src/data.c b/src/data.c index a3d2f46013b..9b42d83d09b 100644 --- a/src/data.c +++ b/src/data.c @@ -37,6 +37,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #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;