summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavutil/integer.c4
-rw-r--r--libavutil/integer.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/libavutil/integer.c b/libavutil/integer.c
index 78e252fbde..b709c6d487 100644
--- a/libavutil/integer.c
+++ b/libavutil/integer.c
@@ -25,9 +25,11 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
-#include "common.h"
+#include <string.h>
+
#include "integer.h"
#include "avassert.h"
+#include "intmath.h"
static const AVInteger zero_i;
diff --git a/libavutil/integer.h b/libavutil/integer.h
index 45f733c04c..2d9b5bb10f 100644
--- a/libavutil/integer.h
+++ b/libavutil/integer.h
@@ -29,7 +29,7 @@
#define AVUTIL_INTEGER_H
#include <stdint.h>
-#include "common.h"
+#include "attributes.h"
#define AV_INTEGER_SIZE 8