summaryrefslogtreecommitdiff
path: root/libavutil/twofish.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/twofish.c')
-rw-r--r--libavutil/twofish.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavutil/twofish.c b/libavutil/twofish.c
index 649b4bc41b..9f9687eccb 100644
--- a/libavutil/twofish.c
+++ b/libavutil/twofish.c
@@ -18,9 +18,13 @@
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
+#include <string.h>
+
#include "twofish.h"
-#include "common.h"
+#include "error.h"
#include "intreadwrite.h"
+#include "mem.h"
#include "attributes.h"
#define LR(x, n) ((x) << (n) | (x) >> (32 - (n)))