port: remove unused includes

This commit is contained in:
NeroBurner 2018-06-01 10:51:47 +02:00 committed by NeroBurner
parent 800bd423e4
commit 364fad5649

View File

@ -38,15 +38,8 @@
#include "config.h"
#include <stdarg.h> // for va_list, va_start, va_end
#include <string.h> // for strstr()
#include <assert.h>
#include <string>
#include <vector>
#include "port.h"
using std::string;
using std::vector;
// These call the windows _vsnprintf, but always NUL-terminate.
int safe_vsnprintf(char *str, size_t size, const char *format, va_list ap) {
if (size == 0) // not even room for a \0?