13 lines
204 B
C
13 lines
204 B
C
#include "compatibility.h"
|
|
|
|
uint32_t millis(void)
|
|
{
|
|
struct timeval now;
|
|
uint32_t ms;
|
|
|
|
gettimeofday(&now, NULL);
|
|
|
|
ms = ((now.tv_sec * 1000000) + now.tv_usec) / 1000;
|
|
return (ms);
|
|
|
|
} |