From 9a88c1dfa806d7b748d0ca6640fccc00d98774ff Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= <mans@mansr.com>
Date: Mon, 10 Aug 2009 01:27:30 +0000
Subject: [PATCH] eval: include our headers after system headers

Originally committed as revision 19612 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/eval.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/eval.c b/libavcodec/eval.c
index d757749e884..cdbab19d2c9 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
-- 
GitLab