00001 /* 00002 * SpanDSP - a series of DSP components for telephony 00003 * 00004 * sys/time.h - a fudge for MSVC, which lacks this header 00005 * 00006 * Written by Steve Underwood <steveu@coppice.org> 00007 * 00008 * Copyright (C) 2006 Michael Jerris 00009 * 00010 * 00011 * This file is released in the public domain. 00012 * 00013 */ 00014 00015 struct timeval 00016 { 00017 long int tv_sec; 00018 long int tv_usec; 00019 }; 00020 00021 extern void gettimeofday(struct timeval *tv, void *tz);