diff options
author | Martin Storsjö <martin@martin.st> | 2013-01-20 16:30:09 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-01-20 18:10:21 +0200 |
commit | d160a2fb4caa6c4e931b13c87663d8e81dc04882 (patch) | |
tree | 17b7c50f6af6816c689cd83292a475e28c9b26ab /libavcodec/ppc | |
parent | 68f18f03519ae550e25cf12661172641e9f0eaca (diff) | |
download | ffmpeg-d160a2fb4caa6c4e931b13c87663d8e81dc04882.tar.gz |
ppc: Include string.h for memset
This fixes build failures on ppc machines with a compiler that
supports -Werror=implicit-function-declaration.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r-- | libavcodec/ppc/vp3dsp_altivec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ppc/vp3dsp_altivec.c b/libavcodec/ppc/vp3dsp_altivec.c index 6adf9aefac..24ad09f03b 100644 --- a/libavcodec/ppc/vp3dsp_altivec.c +++ b/libavcodec/ppc/vp3dsp_altivec.c @@ -18,6 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <string.h> + #include "config.h" #include "libavutil/attributes.h" #include "libavutil/cpu.h" |