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 32 33 34 35 36 37 38
|
Index: fweb-1.62/Web/common.c
===================================================================
--- fweb-1.62.orig/Web/common.c
+++ fweb-1.62/Web/common.c
@@ -378,6 +378,7 @@ OVERFLW("Keyword buffer","") \
/* 50: */
#line 84 "./common.web"
+BUF buf;
#ifdef ibmpc
#ifdef borland
Index: fweb-1.62/Web/typedefs.h
===================================================================
--- fweb-1.62.orig/Web/typedefs.h
+++ fweb-1.62/Web/typedefs.h
@@ -1351,7 +1351,7 @@ int n;
outer_char **s;
} BUF;
-BUF buf;
+extern BUF buf;
IN_STYLE outer_char HUGE *termcap; /* Name of termcap file. */
IN_STYLE BUF sput_buf; /* For temporary color strings. */
Index: fweb-1.62/Web/typedefs.web
===================================================================
--- fweb-1.62.orig/Web/typedefs.web
+++ fweb-1.62/Web/typedefs.web
@@ -1724,7 +1724,7 @@ int n;
outer_char **s;
} BUF;
-BUF buf;
+extern BUF buf;
IN_STYLE outer_char HUGE *termcap; /* Name of termcap file. */
IN_STYLE BUF sput_buf; /* For temporary color strings. */
|