Mercurial > libavcodec.hg
comparison eval.c @ 11613:2c41284050cf libavcodec
Remove unnecessary header inclusion directives.
| author | stefano |
|---|---|
| date | Mon, 12 Apr 2010 19:21:08 +0000 |
| parents | 414a7cdaa54d |
| children | ab7aceed5286 |
comparison
equal
deleted
inserted
replaced
| 11612:90b6d031c821 | 11613:2c41284050cf |
|---|---|
| 24 * simple arithmetic expression evaluator. | 24 * simple arithmetic expression evaluator. |
| 25 * | 25 * |
| 26 * see http://joe.hotchkiss.com/programming/eval/eval.html | 26 * see http://joe.hotchkiss.com/programming/eval/eval.html |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #include <stdio.h> | 29 #include "libavutil/avutil.h" |
| 30 #include <stdlib.h> | |
| 31 #include <string.h> | |
| 32 #include <math.h> | |
| 33 | |
| 34 #include "libavutil/mathematics.h" | |
| 35 #include "avcodec.h" | |
| 36 #include "eval.h" | 30 #include "eval.h" |
| 37 | 31 |
| 38 typedef struct Parser{ | 32 typedef struct Parser{ |
| 39 int stack_index; | 33 int stack_index; |
| 40 char *s; | 34 char *s; |
