define feature test macro to ensure vsnprintf is available

This commit is contained in:
2018-11-16 12:02:33 +01:00
parent a76adc31ab
commit d1d65344af

View File

@ -17,6 +17,11 @@
* *
***************************************************************/
// Make sure that vsnprintf is available
#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif
#include "StreamBuffer.h"
#include "StreamError.h"