diff options
author | L. E. Segovia <amy@centricular.com> | 2024-08-31 15:41:48 +0000 |
---|---|---|
committer | L. E. Segovia <amy@centricular.com> | 2024-09-11 22:00:08 -0300 |
commit | 2ca54839dad751cbc3e656966a46ead1cd5ac86b (patch) | |
tree | 04a64fc574bf5f127d733b8e64940396861ada99 | |
parent | a365115e410cc81a72d3b8aef55cda2c6a4d6e81 (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.c | 1 | ||||
-rw-r--r-- | orc/orcx86-private.h | 3 |
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); |