[FFmpeg-devel] [PATCH 1/2] eval: include our headers after system headers
Mans Rullgard
mans
Sun Aug 9 14:12:20 CEST 2009
---
libavcodec/eval.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/eval.c b/libavcodec/eval.c
index d757749..cdbab19 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
--
1.6.4
More information about the ffmpeg-devel
mailing list