shithub: choc

Download patch

ref: 038e7b63142e3d5699650dcffb7cf624d2b0d9f3
parent: deb89ab15d8fa434a94c52ed0c9a5bb2e309eeb4
author: Turo Lamminen <turol@iki.fi>
date: Wed Sep 7 08:01:27 EDT 2022

textscreen: Remove extern from forward declarations which don't need it

--- a/textscreen/txt_inputbox.c
+++ b/textscreen/txt_inputbox.c
@@ -26,8 +26,8 @@
 #include "txt_utf8.h"
 #include "txt_window.h"
 
-extern txt_widget_class_t txt_inputbox_class;
-extern txt_widget_class_t txt_int_inputbox_class;
+txt_widget_class_t txt_inputbox_class;
+txt_widget_class_t txt_int_inputbox_class;
 
 static void SetBufferFromValue(txt_inputbox_t *inputbox)
 {