Skip to content
Snippets Groups Projects
Commit 77b2d195 authored by Thibaut VIARD's avatar Thibaut VIARD
Browse files

adding stdio.h needed include in dtostrf.c

parent 2cba1137
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
char *dtostrf (double val, signed char width, unsigned char prec, char *sout) {
char fmt[20];
sprintf(fmt, "%%%d.%df", width, prec);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment