summaryrefslogtreecommitdiff
path: root/files.c
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2021-09-27 12:36:27 +0100
committerKatolaZ <katolaz@freaknet.org>2021-09-27 12:36:27 +0100
commit46f92bb4c29351797740e7fc0f3518a29950dc2d (patch)
tree6a2bc39ba257d61b6328aa46d989a53ec753a960 /files.c
parent864ec4a6c5ef86273653af4eaab9315bd1b7bbca (diff)
remove implicit extern declarations -- thanks to adc!HEADmaster
Diffstat (limited to 'files.c')
-rw-r--r--files.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/files.c b/files.c
index 9ca173f..dc91e3b 100644
--- a/files.c
+++ b/files.c
@@ -5,6 +5,16 @@
#include "gramscii.h"
+/** extern declarations **/
+
+extern lineset_t screen; /* what is visualised */
+
+extern int WIDTH, HEIGHT;
+
+extern int force_new;
+extern char modified; /* set to 1 if screen modified since last save */
+extern char fname[256];
+
/*** File management ***/
void write_file(FILE *fc){