Skip to content
Snippets Groups Projects
Commit 1c3df51f authored by Marcio Teixeira's avatar Marcio Teixeira Committed by Scott Lahteine
Browse files

vsnprintf patch redux (#14725)

parent bf610d87
No related branches found
No related tags found
Loading
......@@ -41,10 +41,6 @@
#undef sq
#define sq(x) ((x)*(x))
#ifndef vsnprintf_P
#define vsnprintf_P vsnprintf
#endif
#ifndef SBI
#define SBI(A,B) (A |= (1 << (B)))
#endif
......@@ -58,6 +54,10 @@
inline const char* strchr_P(const char *s, int c) { return strchr(s,c); }
//#define strchr_P(s,c) strchr(s,c)
#endif
#ifndef vsnprintf_P
#define vsnprintf_P vsnprintf
#endif
#endif
// Restart causes
......
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