summaryrefslogtreecommitdiff
blob: b6661436870863e94381d1f71e0c03aed16009c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
fix up prototypes to avoid -Wimplicit-function-declaration warnings

--- a/src/coreui.h
+++ b/src/coreui.h
@@ -177,6 +177,7 @@
 void stepIt_setupGtk(CTR cnt);
 
 void runIt_setupX(void);
+void runIt_setupGtk(void);
 
 
 /*--------------------------------------------------------------------------
--- a/src/ssGtk.c
+++ b/src/ssGtk.c
@@ -82,6 +82,7 @@
 
 /* externals */
 extern dataStart;
+ADDR iAinstAddr(ADDR baseAddr, BYTE iAmode, int delta);
 
 static GtkLabel* instcount_label;
 /* sits in a background loop */
@@ -100,7 +101,7 @@
 }
 
 
-void runIt_setupGtk(void *data)
+void runIt_setupGtk(void)
 {
 	g_idle_add(runItGtk, NULL);
 	stopPressed = NO;