include cstdio for printf in SharedUtil

This commit is contained in:
Stephen Birarda 2013-03-20 13:29:10 -07:00
parent 68765c5a2c
commit b24353957c

View file

@ -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);