Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include stdio.h for vsnprintf in buffer.h (#693)
`vsnprintf` is defined in `stdio.h`: https://github.com/bminor/glibc/blob/734e7f91e752f44984fe42c2384c23a0290b6e56/libio/stdio.h#L389 All the examples include both `stdio.h` and `stdarg.h` when using `vsnprintf`. For whatever reason, on the emscripten target there is an error due to missing `vsnprintf` but on other targets there is no error.
- Loading branch information