Commit 9d6ab600 authored by John Esmet's avatar John Esmet

Placate the build slaves

parent 54e98827
......@@ -91,12 +91,12 @@ PATENT RIGHTS GRANT:
#ifndef TOKU_TIME_H
#define TOKU_TIME_H
#include <toku_config.h>
#include "toku_config.h"
#include <time.h>
#include <sys/time.h>
#include <stdint.h>
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));
}
......
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