Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2023-04-18 06:07:02 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2023-04-18 06:07:02 +0300
commit9efa0eac04e44f399e2696eadd4abab0a0ee86a8 (patch)
tree1746997e17e36cf5272a9b47c1013591ac777ae0
parent09f7f82ca62818509e86ab54887932fc4e833078 (diff)
Avoid "ISO C forbids an empty translation unit"
Add dummy typedef to avoid the warning
-rw-r--r--silk/debug.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/silk/debug.c b/silk/debug.c
index eb0c36ef..492282d0 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