forked from mpaland/printf
-
Notifications
You must be signed in to change notification settings - Fork 64
_vsnprintf clashes with a function in mingw's stdio.h header #130
Copy link
Copy link
Closed
Labels
bugSomething isn't workingSomething isn't workingplatform-incompatibilityThe library is making assumptions causing it to fail on platforms where they do not hold.The library is making assumptions causing it to fail on platforms where they do not hold.resolved-on-developA changeset fixing this issue has been commiutted to the development branchA changeset fixing this issue has been commiutted to the development branch
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingplatform-incompatibilityThe library is making assumptions causing it to fail on platforms where they do not hold.The library is making assumptions causing it to fail on platforms where they do not hold.resolved-on-developA changeset fixing this issue has been commiutted to the development branchA changeset fixing this issue has been commiutted to the development branch
Apparently, the mingw environment's C standard header stdio.h has a function named
_vsnprintf; this clashes with our_vsnprintf- at least in the test program which includesprintf.c.