diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-08 23:11:04 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-08 23:11:04 +0000 |
commit | 953f54f1f4796ec866745fbc9802975d432dd6fe (patch) | |
tree | 4b043eb68473e397bb4dd10e5b503ea8135738cf /tests/seek_test.c | |
parent | 5210529e2d101a54f9710361352719e919374a10 (diff) | |
download | ffmpeg-953f54f1f4796ec866745fbc9802975d432dd6fe.tar.gz |
#include required stdint.h header directly.
Originally committed as revision 13084 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/seek_test.c')
-rw-r--r-- | tests/seek_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/seek_test.c b/tests/seek_test.c index b1a2c939a5..6bf134602d 100644 --- a/tests/seek_test.c +++ b/tests/seek_test.c @@ -18,6 +18,8 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ + +#include <stdint.h> #include <stdlib.h> #include <stdio.h> |