mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 11:17:38 +02:00
include cstdio for printf in SharedUtil
This commit is contained in:
parent
68765c5a2c
commit
b24353957c
1 changed files with 2 additions and 2 deletions
|
@ -6,9 +6,9 @@
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "SharedUtil.h"
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <bitset>
|
#include <cstdio>
|
||||||
|
#include "SharedUtil.h"
|
||||||
|
|
||||||
double usecTimestamp(timeval *time) {
|
double usecTimestamp(timeval *time) {
|
||||||
return (time->tv_sec * 1000000.0 + time->tv_usec);
|
return (time->tv_sec * 1000000.0 + time->tv_usec);
|
||||||
|
|
Loading…
Reference in a new issue