Skip to content

Commit 2c2d76b

Browse files
committed
avutil/integer: Don't include common.h
Reviewed-by: Martin Storsjö <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]>
1 parent 94d5892 commit 2c2d76b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

libavutil/integer.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@
2525
* @author Michael Niedermayer <[email protected]>
2626
*/
2727

28-
#include "common.h"
28+
#include <string.h>
29+
2930
#include "integer.h"
3031
#include "avassert.h"
32+
#include "intmath.h"
3133

3234
static const AVInteger zero_i;
3335

libavutil/integer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define AVUTIL_INTEGER_H
3030

3131
#include <stdint.h>
32-
#include "common.h"
32+
#include "attributes.h"
3333

3434
#define AV_INTEGER_SIZE 8
3535

0 commit comments

Comments
 (0)