From 9efa0eac04e44f399e2696eadd4abab0a0ee86a8 Mon Sep 17 00:00:00 2001
From: Jean-Marc Valin <jmvalin@jmvalin.ca>
Date: Mon, 17 Apr 2023 23:07:02 -0400
Subject: [PATCH] Avoid "ISO C forbids an empty translation unit"

Add dummy typedef to avoid the warning
---
 silk/debug.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/silk/debug.c b/silk/debug.c
index eb0c36ef1..492282d0d 100644
--- a/silk/debug.c
+++ b/silk/debug.c
@@ -29,6 +29,8 @@ POSSIBILITY OF SUCH DAMAGE.
 #include "config.h"
 #endif
 
+typedef int _prevent_empty_translation_unit_warning;
+
 #include "debug.h"
 
 #if SILK_DEBUG || SILK_TIC_TOC
-- 
GitLab