diff options
author | Mans Rullgard <mans@mansr.com> | 2011-01-15 15:09:26 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-18 20:48:24 +0000 |
commit | ec5f57192aa46435eb0ade1b052d05fc28fd7886 (patch) | |
tree | 767dae3f160c59bb9971ad01b6802675c2b94a0a /libavutil | |
parent | fef2d66166105659b0e30523ab8dd4f52c035bf1 (diff) | |
download | ffmpeg-ec5f57192aa46435eb0ade1b052d05fc28fd7886.tar.gz |
cpu-test: include stdio.h only for test prog
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/cpu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/cpu.c b/libavutil/cpu.c index 766f13f248..1e034914de 100644 --- a/libavutil/cpu.c +++ b/libavutil/cpu.c @@ -16,8 +16,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <stdio.h> - #include "cpu.h" #include "config.h" @@ -39,6 +37,7 @@ int av_get_cpu_flags(void) #ifdef TEST #undef printf +#include <stdio.h> int main(void) { |