fixed: compiler error when building tests on Windows

This commit is contained in:
Andrey Prygunkov
2015-07-06 21:49:50 +02:00
parent 547e0e73de
commit ec29f55f53
4 changed files with 12 additions and 0 deletions

View File

@@ -22,6 +22,15 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef WIN32
#include "win32.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <stdio.h>