tar: Staticise symbols

This commit is contained in:
sin 2015-04-23 12:38:32 +01:00
parent ce4a10abe7
commit 3419f94d83
1 changed files with 2 additions and 2 deletions

4
tar.c
View File

@ -55,7 +55,7 @@ static dev_t tardev;
static int mflag;
static char filtermode = '\0';
struct ent {
static struct ent {
char *name;
time_t mtime;
} *ents;
@ -70,7 +70,7 @@ pushent(char *name, time_t mtime)
entlen++;
}
struct ent *
static struct ent *
popent(void)
{
if (entlen) {