diff options
-rw-r--r-- | src/data.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 <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; |