aboutsummaryrefslogtreecommitdiff
path: root/driver-csi.c
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2012-01-22 18:54:17 +0000
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2012-01-22 18:54:17 +0000
commit2a82ab2f1bd64948523073d2ddcfb6884bd04367 (patch)
treea0265b38fa718a908b97e27238d4ea349c332cad /driver-csi.c
parent429ecf0f1a0103c2bccdb74bf19c76f98e88c6fe (diff)
downloadtermo-2a82ab2f1bd64948523073d2ddcfb6884bd04367.tar.gz
termo-2a82ab2f1bd64948523073d2ddcfb6884bd04367.tar.xz
termo-2a82ab2f1bd64948523073d2ddcfb6884bd04367.zip
Mark new driver-csi internal variables as static so they don't result in linkable symbols
Diffstat (limited to 'driver-csi.c')
-rw-r--r--driver-csi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/driver-csi.c b/driver-csi.c
index 888f78b..f138a73 100644
--- a/driver-csi.c
+++ b/driver-csi.c
@@ -5,11 +5,11 @@
#include <string.h>
// There are 64 codes 0x40 - 0x7F
-int keyinfo_initialised = 0;
-struct keyinfo csi_ss3s[64];
-struct keyinfo ss3s[64];
-char ss3_kpalts[64];
-struct keyinfo csifuncs[35]; /* This value must be increased if more CSI function keys are added */
+static int keyinfo_initialised = 0;
+static struct keyinfo csi_ss3s[64];
+static struct keyinfo ss3s[64];
+static char ss3_kpalts[64];
+static struct keyinfo csifuncs[35]; /* This value must be increased if more CSI function keys are added */
#define NCSIFUNCS (sizeof(csifuncs)/sizeof(csifuncs[0]))
typedef struct {