diff options
author | Martin Storsjö <martin@martin.st> | 2016-04-11 10:04:23 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2016-04-11 14:48:24 +0300 |
commit | 798845ce7e5b7fdd17c7269c5d267fb487d9c46f (patch) | |
tree | cf97f8efe28a7042f9be9f3aef913a74c4bacf59 /libavutil | |
parent | d12b5b2f135aade4099f4b26b0fe678656158c13 (diff) | |
download | ffmpeg-798845ce7e5b7fdd17c7269c5d267fb487d9c46f.tar.gz |
testprogs: Add missing libm.h includes
This fixes building on MSVC 2010 and 2012 after d12b5b2f135.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/eval-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/eval-test.c b/libavutil/eval-test.c index da8721de7c..3551f17b20 100644 --- a/libavutil/eval-test.c +++ b/libavutil/eval-test.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <string.h> +#include "libm.h" #include "timer.h" #include "eval.h" |