diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-03-08 17:00:21 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-03-08 17:00:21 +0000 |
commit | f19a068ef656ecc8303290d89769f1a1a288236e (patch) | |
tree | d2cc9ad6532b8807a179833641b3d8fef0afd360 /tools | |
parent | b81786611acde7a9cc7f3a71ed41945cd6df2548 (diff) | |
download | ffmpeg-f19a068ef656ecc8303290d89769f1a1a288236e.tar.gz |
Add missing stdlib.h #include, fixes the warnings:
tools/trasher.c:44: warning: implicit declaration of function ‘atoi’
tools/trasher.c:53: warning: implicit declaration of function ‘abs’
Originally committed as revision 22328 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools')
-rw-r--r-- | tools/trasher.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/trasher.c b/tools/trasher.c index 9cb623aa71..114eb78a68 100644 --- a/tools/trasher.c +++ b/tools/trasher.c @@ -19,6 +19,7 @@ */ #include <stdio.h> +#include <stdlib.h> #include <inttypes.h> static uint32_t state; |