diff options
author | Måns Rullgård <mans@mansr.com> | 2009-08-10 01:27:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-08-10 01:27:30 +0000 |
commit | 9a88c1dfa806d7b748d0ca6640fccc00d98774ff (patch) | |
tree | 8840c76ceeaec835b3e9d6aecd6b010e25a7e051 | |
parent | bd41c06f185b7ec30396c273cd12b4b95850a323 (diff) | |
download | ffmpeg-9a88c1dfa806d7b748d0ca6640fccc00d98774ff.tar.gz |
eval: include our headers after system headers
Originally committed as revision 19612 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c index d757749e88..cdbab19d2c 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -28,14 +28,14 @@ * see http://joe.hotchkiss.com/programming/eval/eval.html */ -#include "avcodec.h" -#include "eval.h" - #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> +#include "avcodec.h" +#include "eval.h" + #ifndef NAN #define NAN 0.0/0.0 #endif |