mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-08-20 09:18:31 +02:00
* Fix for Y2038 gettimeofday for Win32 builds * fixing spaces * Fixing also the builtin gettimeofday
17 lines
365 B
C
17 lines
365 B
C
#pragma once
|
|
#include <sys\utime.h>
|
|
|
|
#define utimbuf _utimbuf
|
|
#define utimes w32_utimes
|
|
|
|
#define timeval w32_timeval
|
|
struct timeval
|
|
{
|
|
long long tv_sec;
|
|
long tv_usec;
|
|
};
|
|
|
|
int usleep(unsigned int);
|
|
int gettimeofday(struct timeval *, void *);
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
|
int w32_utimes(const char *, struct timeval *); |