summaryrefslogtreecommitdiff
path: root/libavcodec/eval.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-08-10 01:27:30 +0000
committerMåns Rullgård <mans@mansr.com>2009-08-10 01:27:30 +0000
commit9a88c1dfa806d7b748d0ca6640fccc00d98774ff (patch)
tree8840c76ceeaec835b3e9d6aecd6b010e25a7e051 /libavcodec/eval.c
parentbd41c06f185b7ec30396c273cd12b4b95850a323 (diff)
eval: include our headers after system headers
Originally committed as revision 19612 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.c')
-rw-r--r--libavcodec/eval.c6
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