Browse Source

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
tags/v0.6
Diego Biurrun 15 years ago
parent
commit
f19a068ef6
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      tools/trasher.c

+ 1
- 0
tools/trasher.c View File

@@ -19,6 +19,7 @@
*/

#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>

static uint32_t state;


Loading…
Cancel
Save