diff options
Diffstat (limited to 'scripts/conmakehash.c')
-rw-r--r-- | scripts/conmakehash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/conmakehash.c b/scripts/conmakehash.c index e0c6891a9ad4..263a44d57fa9 100644 --- a/scripts/conmakehash.c +++ b/scripts/conmakehash.c | |||
@@ -24,14 +24,14 @@ | |||
24 | 24 | ||
25 | typedef unsigned short unicode; | 25 | typedef unsigned short unicode; |
26 | 26 | ||
27 | void usage(char *argv0) | 27 | static void usage(char *argv0) |
28 | { | 28 | { |
29 | fprintf(stderr, "Usage: \n" | 29 | fprintf(stderr, "Usage: \n" |
30 | " %s chartable [hashsize] [hashstep] [maxhashlevel]\n", argv0); | 30 | " %s chartable [hashsize] [hashstep] [maxhashlevel]\n", argv0); |
31 | exit(EX_USAGE); | 31 | exit(EX_USAGE); |
32 | } | 32 | } |
33 | 33 | ||
34 | int getunicode(char **p0) | 34 | static int getunicode(char **p0) |
35 | { | 35 | { |
36 | char *p = *p0; | 36 | char *p = *p0; |
37 | 37 | ||
@@ -49,7 +49,7 @@ unicode unitable[MAX_FONTLEN][255]; | |||
49 | /* Massive overkill, but who cares? */ | 49 | /* Massive overkill, but who cares? */ |
50 | int unicount[MAX_FONTLEN]; | 50 | int unicount[MAX_FONTLEN]; |
51 | 51 | ||
52 | void addpair(int fp, int un) | 52 | static void addpair(int fp, int un) |
53 | { | 53 | { |
54 | int i; | 54 | int i; |
55 | 55 | ||