summaryrefslogtreecommitdiff
path: root/libavutil/integer.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-23 18:44:36 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-24 12:56:49 +0100
commit2c2d76b50d7ca2ddf3faa396a94a762158128e2d (patch)
tree2c52c4d671747131f4a95788b46057288c260a4d /libavutil/integer.c
parent94d5892beac349ddd2ed3bbac0c9100e3d171d36 (diff)
avutil/integer: Don't include common.h
Reviewed-by: Martin Storsjö <martin@martin.st> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil/integer.c')
-rw-r--r--libavutil/integer.c4
1 files changed, 3 insertions, 1 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;