blob: 9f5b09a7b82f8530b6c5bb2e28cd8b75674b1430 (
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
|
diff --git a/src/kalu/kalu.h b/src/kalu/kalu.h
index 428aea1..1e109d8 100644
--- a/src/kalu/kalu.h
+++ b/src/kalu/kalu.h
@@ -134,7 +134,7 @@ typedef enum {
} tpl_t;
/* template names in config (prefixed w/ "template-") */
-const gchar *tpl_names[_NB_TPL];
+extern const gchar *tpl_names[_NB_TPL];
typedef enum {
FLD_TITLE,
@@ -144,7 +144,7 @@ typedef enum {
} fld_t;
/* field names in config */
-const gchar *fld_names[_NB_FLD];
+extern const gchar *fld_names[_NB_FLD];
typedef enum {
TPL_SCE_UNDEFINED = 0,
@@ -156,7 +156,7 @@ typedef enum {
} tpl_sce_t;
/* source names in config */
-const gchar *tpl_sce_names[_NB_TPL_SCE];
+extern const gchar *tpl_sce_names[_NB_TPL_SCE];
struct field {
const char *def;
|