Add declaration for atof if not predefined.
This commit is contained in:
parent
08ae913486
commit
024ec58f11
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue