summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL. E. Segovia <amy@centricular.com>2024-08-31 15:41:48 +0000
committerL. E. Segovia <amy@centricular.com>2024-09-11 22:00:08 -0300
commit2ca54839dad751cbc3e656966a46ead1cd5ac86b (patch)
tree04a64fc574bf5f127d733b8e64940396861ada99
parenta365115e410cc81a72d3b8aef55cda2c6a4d6e81 (diff)
x86: Fix non-C11 typedefs
Fixes #77 Part-of: <https://gitlab.freedesktop.org/gstreamer/orc/-/merge_requests/206>
-rw-r--r--orc/orcprogram-avx.c1
-rw-r--r--orc/orcx86-private.h3
2 files changed, 1 insertions, 3 deletions
diff --git a/orc/orcprogram-avx.c b/orc/orcprogram-avx.c
index dc75f6c..4226c7e 100644
--- a/orc/orcprogram-avx.c
+++ b/orc/orcprogram-avx.c
@@ -9,6 +9,7 @@
#include <string.h>
#include <sys/types.h>
+#include <orc/orcx86.h>
#include <orc/orcx86-private.h>
#include <orc/orcavx.h>
#include <orc/orcavx-internal.h>
diff --git a/orc/orcx86-private.h b/orc/orcx86-private.h
index 3c9460e..698d647 100644
--- a/orc/orcx86-private.h
+++ b/orc/orcx86-private.h
@@ -2,9 +2,6 @@
#include <orc/orcutils.h>
-typedef struct _OrcX86Target OrcX86Target;
-typedef struct _OrcTarget OrcTarget;
-
ORC_BEGIN_DECLS
ORC_INTERNAL void orc_x86_register_extension(OrcTarget *t, OrcX86Target *x86t);