summaryrefslogtreecommitdiff
path: root/frontends/riscos/ucstables.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-06-29 16:09:45 -0700
committerVincent Sanders <vince@kyllikki.org>2019-06-30 09:52:06 +0100
commit6a53b447e5726bc7d7b8405b1b1dd958c701b007 (patch)
tree661c6efe74f6edd53842a1b6a079eafd9ab69fd9 /frontends/riscos/ucstables.h
parent1c3ce67c62cccd8a32090e770f0cba62e9945f28 (diff)
downloadnetsurf-6a53b447e5726bc7d7b8405b1b1dd958c701b007.tar.gz
netsurf-6a53b447e5726bc7d7b8405b1b1dd958c701b007.tar.bz2
Declare global variables as extern in headers
Otherwise, each source file that includes the header will create a new definition, which are usually merged together by the linker. Multiple definitions of an object is not allowed in ISO C.
Diffstat (limited to 'frontends/riscos/ucstables.h')
-rw-r--r--frontends/riscos/ucstables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/riscos/ucstables.h b/frontends/riscos/ucstables.h
index e5d838249..31db5d882 100644
--- a/frontends/riscos/ucstables.h
+++ b/frontends/riscos/ucstables.h
@@ -21,7 +21,7 @@
* This is only used if nothing claims Service_International,8
*/
-struct gui_utf8_table *riscos_utf8_table;
+extern struct gui_utf8_table *riscos_utf8_table;
nserror utf8_to_local_encoding(const char *string, size_t len, char **result);
nserror utf8_from_local_encoding(const char *string, size_t len, char **result);