diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-11-23 11:34:36 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-11-23 11:34:36 +0100 |
commit | fbdca8cfe42c178f8763126224ee5404b9b6ce68 (patch) | |
tree | 7771052fac4b818066f42b08880b9da5792340d2 /FICS/vers.h | |
parent | 67c553e6ea2f436db45aa6eb07019723a4bc04e9 (diff) |
Made vars const
Diffstat (limited to 'FICS/vers.h')
-rw-r--r-- | FICS/vers.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |