view spandsp-0.0.6pre17/src/msvc/gettimeofday.c @ 4:26cd8f1ef0b1

import spandsp-0.0.6pre17
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Fri, 25 Jun 2010 15:50:58 +0200
parents
children
line wrap: on
line source

#ifdef _MSC_VER
#pragma warning(disable:4100)
#endif

#include "windows.h"

void gettimeofday(struct timeval *tv, void *tz)
{
    long int l = GetTickCount();
 
    tv->tv_sec = l / 1000;
    tv->tv_usec = (l % 1000) * 1000;
    return;
} 

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.