Staticise some symbols in tr(1)

This commit is contained in:
sin 2015-01-10 14:21:09 +00:00
parent a582cb8a2f
commit 1f3345b9e6

10
tr.c
View File

@ -20,7 +20,7 @@ struct range {
#define PUNCT "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~" #define PUNCT "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
#define ALNUM DIGIT UPPER LOWER #define ALNUM DIGIT UPPER LOWER
struct class { static struct {
char *name; char *name;
char *str; char *str;
} classes[] = { } classes[] = {
@ -38,10 +38,10 @@ struct class {
{ "xdigit", DIGIT "A-Fa-f" }, { "xdigit", DIGIT "A-Fa-f" },
}; };
struct range *set1 = NULL; static struct range *set1 = NULL;
size_t set1ranges = 0; static size_t set1ranges = 0;
struct range *set2 = NULL; static struct range *set2 = NULL;
size_t set2ranges = 0; static size_t set2ranges = 0;
static size_t static size_t
rangelen(struct range r) rangelen(struct range r)