diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-26 09:11:22 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-26 09:11:22 +0200 |
commit | 834259528b6cf593bf9544e3183b84b9b7880641 (patch) | |
tree | 9e573d55dd836f848528a401842e8ee3cd7b2d83 | |
parent | b284e1ffe343d6697fb950d1ee517bafda8a9844 (diff) | |
download | ffmpeg-834259528b6cf593bf9544e3183b84b9b7880641.tar.gz |
fft-test: add a missing #include
stdio.h needed for printf since 7177df90a043bd59e172843fc7cb9e767080ea12
-rw-r--r-- | libavcodec/fft-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fft-test.c b/libavcodec/fft-test.c index ff5a126e5f..7e923d52ad 100644 --- a/libavcodec/fft-test.c +++ b/libavcodec/fft-test.c @@ -37,6 +37,7 @@ #if HAVE_UNISTD_H #include <unistd.h> #endif +#include <stdio.h> #include <stdlib.h> #include <string.h> |