aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/vers.c6
-rw-r--r--FICS/vers.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/FICS/vers.c b/FICS/vers.c
index 3022be4..64b0aac 100644
--- a/FICS/vers.c
+++ b/FICS/vers.c
@@ -1,5 +1,5 @@
#include "vers.h"
-char SGS_VERS[] = "";
-char VERS_NUM[] = "rpblc-1.4.3";
-char COMP_DATE[] = __DATE__;
+const char SGS_VERS[] = "";
+const char VERS_NUM[] = "rpblc-1.4.3";
+const char COMP_DATE[] = __DATE__;
diff --git a/FICS/vers.h b/FICS/vers.h
index df005ac..c6046e2 100644
--- a/FICS/vers.h
+++ b/FICS/vers.h
@@ -24,8 +24,8 @@
#ifndef _VERS_H
#define _VERS_H
-extern char SGS_VERS[];
-extern char VERS_NUM[];
-extern char COMP_DATE[];
+extern const char SGS_VERS[];
+extern const char VERS_NUM[];
+extern const char COMP_DATE[];
#endif /* _VERS_H */