From f23d17d0b2f2e6bd66b0d685461d9dd1c2070918 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Mon, 13 Apr 2020 10:18:49 -0500 Subject: Fix #185 - forward decl symbol change --- tests/include/tast2.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'tests/include') diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 4854eb7..76aadc9 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -162,6 +162,14 @@ struct GPU_Target char *x, y, **z; }; +// Issue #185 +struct SDL_AudioCVT; + +typedef struct SDL_AudioCVT +{ + int needed; +} SDL_AudioCVT; + // DUPLICATES @@ -318,6 +326,14 @@ struct GPU_Target char *x, y, **z; }; +// Issue #185 +struct SDL_AudioCVT; + +typedef struct SDL_AudioCVT +{ + int needed; +} SDL_AudioCVT; + #endif -- cgit v1.2.3