Commit 5881bacc by Richard Stallman

(write_rbrac): Handle v*printf like memmove.

From-SVN: r6076
parent 66b804be
...@@ -379,7 +379,10 @@ write_rbrac () ...@@ -379,7 +379,10 @@ write_rbrac ()
/* In the case of memmove, protect in case the application /* In the case of memmove, protect in case the application
defines it as a macro before including the header. */ defines it as a macro before including the header. */
if (!strcmp (fn->fname, "memmove")) if (!strcmp (fn->fname, "memmove")
|| !strcmp (fn->fname, "vprintf")
|| !strcmp (fn->fname, "vfprintf")
|| !strcmp (fn->fname, "vsprintf"))
macro_protect = 1; macro_protect = 1;
if (macro_protect) if (macro_protect)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment