1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-10 06:23:01 +03:00

Fixed a compiling error in src/log.c on Win32 with MSVC

This commit is contained in:
zhengfish
2012-02-07 02:03:16 -05:00
committed by Andreas Schneider
parent 8fea5c7a28
commit 88964cb541

View File

@@ -24,7 +24,11 @@
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#ifndef _WIN32
#include <sys/time.h>
#else
#include <sys/utime.h>
#endif
#include <time.h>
#include "libssh/priv.h"