changeset 10039:e557e75172b0 libavcodec

eval: include our headers after system headers
author mru
date Mon, 10 Aug 2009 01:27:30 +0000
parents 7eb3d9ab4752
children 8f08abb1dffa
files eval.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/eval.c	Thu Aug 06 15:48:19 2009 +0000
+++ b/eval.c	Mon Aug 10 01:27:30 2009 +0000
@@ -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