spandsp 0.0.6
time.h
1/*
2 * SpanDSP - a series of DSP components for telephony
3 *
4 * sys/time.h - a fudge for MSVC, which lacks this header
5 *
6 * Written by Steve Underwood <steveu@coppice.org>
7 *
8 * Copyright (C) 2006 Michael Jerris
9 *
10 *
11 * This file is released in the public domain.
12 *
13 */
14
15struct timeval
16{
17 long int tv_sec;
18 long int tv_usec;
19};
20
21extern void gettimeofday(struct timeval *tv, void *tz);
Definition time.h:16