x86/intreadwrite: fix include of config.h

Should fix make checkheaders.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-07-10 13:52:52 -03:00
parent 15056dd650
commit 1a86a7a48d

View File

@ -22,13 +22,13 @@
#define AVUTIL_X86_INTREADWRITE_H
#include <stdint.h>
#include "config.h"
#if HAVE_INTRINSICS_SSE && defined(__SSE__)
#include <immintrin.h>
#endif
#if HAVE_INTRINSICS_SSE2 && defined(__SSE2__)
#include <emmintrin.h>
#endif
#include "config.h"
#include "libavutil/attributes.h"
#if HAVE_INTRINSICS_SSE && defined(__SSE__)