Commit ac094fa8 authored by John Esmet's avatar John Esmet

Placate the build slaves

parent 00be80fb
...@@ -91,12 +91,12 @@ PATENT RIGHTS GRANT: ...@@ -91,12 +91,12 @@ PATENT RIGHTS GRANT:
#ifndef TOKU_TIME_H #ifndef TOKU_TIME_H
#define TOKU_TIME_H #define TOKU_TIME_H
#include <toku_config.h> #include "toku_config.h"
#include <time.h> #include <time.h>
#include <sys/time.h> #include <sys/time.h>
#include <stdint.h> #include <stdint.h>
static inline float toku_tdiff (struct timeval *a, struct timeval *b) { static inline float toku_tdiff (struct timeval *a, struct timeval *b) {
return (float)((a->tv_sec - b->tv_sec) + 1e-6 * (a->tv_usec - b->tv_usec)); return (float)((a->tv_sec - b->tv_sec) + 1e-6 * (a->tv_usec - b->tv_usec));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment