Replace #include <stdio.h> with #include <cstdio> to solve gcc4mbed compiler problem

Fork of MbedJSONValue by Samuel Mokrani

Files at this revision

API Documentation at this revision

Comitter:
Aleksei_Gimbitskii
Date:
Sat Nov 18 19:11:20 2017 +0000
Parent:
4:10a99cdf7846
Commit message:
Replace #include <stdio.h> with #include <cstdio> to solve gcc4mbed ofline compiler problem

Changed in this revision

MbedJSONValue.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 10a99cdf7846 -r 7c0afc41a115 MbedJSONValue.cpp
--- a/MbedJSONValue.cpp	Thu Sep 22 10:57:37 2011 +0000
+++ b/MbedJSONValue.cpp	Sat Nov 18 19:11:20 2017 +0000
@@ -1,7 +1,7 @@
 #include "MbedJSONValue.h"
 
 # include <stdlib.h>
-# include <stdio.h>
+# include <cstdio>
 
 // Clean up
 void MbedJSONValue::clean() {