From 563b9157d603758206bf1665f6365236876158f6 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 16 May 2016 21:48:53 +0100 Subject: [PATCH] stdlib.h: add atof() prototype --- Library/include/stdlib.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)); -- 2.34.1