diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-10-23 00:24:25 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-10-23 00:24:25 +0000 |
commit | ab1717bb35d85041e0184f79daa1313a1306dc01 (patch) | |
tree | fa0739f76b49b902269f8f7c1e1c7c5ea30c0556 /tbl/tb.c | |
parent | aa7798c94fa57f6c00fab4393c9fe91334864371 (diff) |
Notes
Diffstat (limited to 'tbl/tb.c')
-rw-r--r-- | tbl/tb.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -59,9 +59,9 @@ if (!point((intptr_t)s)) return(1); if (*s==0) return(0); return(1); } -int spcount = 0; -int maxvec = 0; -char **spvecs; +static int spcount = 0; +static int maxvec = 0; +static char **spvecs; char * chspace(void) { @@ -111,9 +111,9 @@ for (i = 0; i < spcount; i++) } static int MAXPC; -char *thisvec; -int tpcount = -1; -char **tpvecs; +static char *thisvec; +static int tpcount = -1; +static char **tpvecs; struct colstr * alocv(int n) { |