staticize some functions

This commit is contained in:
Hiltjo Posthuma
2015-03-07 13:33:39 +01:00
parent 4092196fdc
commit 0c17cd0fb3
5 changed files with 7 additions and 7 deletions

View File

@@ -9,7 +9,7 @@
static int base = 26, start = 'a';
int
static int
itostr(char *str, int x, int n)
{
str[n] = '\0';
@@ -22,7 +22,7 @@ itostr(char *str, int x, int n)
return 0;
}
FILE *
static FILE *
nextfile(FILE *f, char *buf, int plen, int slen)
{
static int filecount = 0;