From: Alan Cox Date: Mon, 16 May 2016 20:48:53 +0000 (+0100) Subject: stdlib.h: add atof() prototype X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=563b9157d603758206bf1665f6365236876158f6;p=FUZIX.git stdlib.h: add atof() prototype --- diff --git a/Library/include/stdlib.h b/Library/include/stdlib.h index c474b4ae..8c0a7ac5 100644 --- a/Library/include/stdlib.h +++ b/Library/include/stdlib.h @@ -39,7 +39,8 @@ extern char *ultoa __P((unsigned long value, char *strP, int radix)); extern char *ltoa __P((long value, char *strP, int radix)); extern int atoi __P((const char *str)); -extern long atol __P((const char *strP)); +extern long atol __P((const char *str)); +extern double atof __P((const char *str)); extern char *_itoa __P((int value)); extern char *_uitoa __P((unsigned int value));