blob: 082565dcc563b1cc138ab70b8fedb232f0996cb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "mpeg4ip.h"
#include <sys/timeb.h>
int gettimeofday (struct timeval *t, void *foo)
{
struct _timeb temp;
_ftime(&temp);
t->tv_sec = temp.time;
t->tv_usec = temp.millitm * 1000;
return (0);
}
|