diff options
author | Måns Rullgård <mans@mansr.com> | 2010-09-09 19:40:59 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-09-09 19:40:59 +0000 |
commit | 65d45cea34322def60856130995e186a6f9862cd (patch) | |
tree | 383164e7084f58b27540be06fc410091649586f1 | |
parent | 9013560f13308642a00e6dab038b3cb5d820a81e (diff) | |
download | ffmpeg-65d45cea34322def60856130995e186a6f9862cd.tar.gz |
Add missing #include <string.h> in x86/cpu.c
Originally committed as revision 25088 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/x86/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/x86/cpu.c b/libavutil/x86/cpu.c index 4df3286f39..4b6cb0df00 100644 --- a/libavutil/x86/cpu.c +++ b/libavutil/x86/cpu.c @@ -21,6 +21,7 @@ */ #include <stdlib.h> +#include <string.h> #include "libavutil/x86_cpu.h" #include "libavutil/cpu.h" |