From 8301da13801403d9e50035961283b96803c79e70 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 22 Oct 2014 17:25:41 +0200 Subject: [PATCH] stopwatch.h: fix includes WEBP_INLINE -> webp/types.h memcpy -> string.h (cherry picked from commit 54edbf65ff49cc308adfa4a054d594020ca44847) Change-Id: Iab2ea8b553dc98be75eede751de62ab0292d1f97 --- examples/stopwatch.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/stopwatch.h b/examples/stopwatch.h index 28518387..f9e799cb 100644 --- a/examples/stopwatch.h +++ b/examples/stopwatch.h @@ -14,6 +14,8 @@ #ifndef WEBP_EXAMPLES_STOPWATCH_H_ #define WEBP_EXAMPLES_STOPWATCH_H_ +#include "webp/types.h" + #if defined _WIN32 && !defined __GNUC__ #include @@ -37,6 +39,7 @@ static WEBP_INLINE double StopwatchReadAndReset(Stopwatch* watch) { #else /* !_WIN32 */ +#include // memcpy #include typedef struct timeval Stopwatch;