Initial import of Glaurung 2.1

This commit is contained in:
Marco Costalba
2008-09-01 07:59:13 +02:00
commit bb751d6c89
64 changed files with 18948 additions and 0 deletions

28
src/timeoday.cpp Normal file
View File

@@ -0,0 +1,28 @@
/*
(c) Copyright 1992 Eric Backus
This software may be used freely so long as this copyright notice is
left intact. There is no warrantee on this software.
*/
#include <windows.h>
#include <time.h>
#include "dos.h"
int gettimeofday(struct timeval * tp, struct timezone * tzp)
{
SYSTEMTIME systime;
if (tp) {
struct tm tmrec;
time_t theTime = time(NULL);
tmrec = *localtime(&theTime);
tp->tv_sec = mktime(&tmrec);
GetLocalTime(&systime); /* system time */
tp->tv_usec = systime.wMilliseconds * 1000;
}
return 0;
}