1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 18:07:59 +00:00
putty-source/unix/uxmisc.c

18 lines
350 B
C
Raw Normal View History

/*
* PuTTY miscellaneous Unix stuff
*/
#include <stdio.h>
#include <sys/time.h>
unsigned long getticks(void)
{
struct timeval tv;
gettimeofday(&tv, NULL);
/*
* This will wrap around approximately every 4000 seconds, i.e.
* just over an hour, which is more than enough.
*/
return tv.tv_sec * 1000000 + tv.tv_usec;
}