comparison eval.c @ 10039:e557e75172b0 libavcodec

eval: include our headers after system headers
author mru
date Mon, 10 Aug 2009 01:27:30 +0000
parents e934c5f8f4a9
children 8f08abb1dffa
comparison
equal deleted inserted replaced
10038:7eb3d9ab4752 10039:e557e75172b0
26 * simple arithmetic expression evaluator. 26 * simple arithmetic expression evaluator.
27 * 27 *
28 * see http://joe.hotchkiss.com/programming/eval/eval.html 28 * see http://joe.hotchkiss.com/programming/eval/eval.html
29 */ 29 */
30 30
31 #include "avcodec.h"
32 #include "eval.h"
33
34 #include <stdio.h> 31 #include <stdio.h>
35 #include <stdlib.h> 32 #include <stdlib.h>
36 #include <string.h> 33 #include <string.h>
37 #include <math.h> 34 #include <math.h>
35
36 #include "avcodec.h"
37 #include "eval.h"
38 38
39 #ifndef NAN 39 #ifndef NAN
40 #define NAN 0.0/0.0 40 #define NAN 0.0/0.0
41 #endif 41 #endif
42 42