View | Details | Raw Unified | Return to bug 169179
Collapse All | Expand All

(-)netrek-client-cow/files/patch-local.c (+20 lines)
Line 0 Link Here
1
--- ./local.c.orig	2012-06-17 10:02:41.000000000 -0500
2
+++ ./local.c	2012-06-17 10:03:00.000000000 -0500
3
@@ -1292,7 +1292,7 @@
4
 }
5
 
6
 
7
-inline void local(void)
8
+extern void local(void)
9
 /*
10
  * Draw out the 'tactical' map
11
  */
12
@@ -1310,7 +1310,7 @@
13
 }
14
 
15
 
16
-inline void clearLocal(void)
17
+extern void clearLocal(void)
18
 /*
19
  * Clear the local map (intelligently rather than just simply wiping
20
  * the map).
(-)netrek-client-cow/files/patch-local.h (+18 lines)
Line 0 Link Here
1
--- ./local.h.orig	2012-06-17 10:02:37.000000000 -0500
2
+++ ./local.h	2012-06-17 10:02:50.000000000 -0500
3
@@ -17,13 +17,13 @@
4
 
5
 /* Global Functions */
6
  
7
-inline void clearLocal(void);
8
+extern void clearLocal(void);
9
 /*
10
    Clear the local map (intelligently rather than just simply wiping
11
    the map).
12
 */
13
 
14
-inline void local(void);
15
+extern void local(void);
16
 /*
17
    Draw out the 'tactical' map.
18
 */

Return to bug 169179