sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 3419f94d8310a916a90e26c14a6aedcd0faca4e3
parent ce4a10abe7e64d6d869ffa0ff06319af500a4e48
Author: sin <sin@2f30.org>
Date:   Thu, 23 Apr 2015 12:38:32 +0100

tar: Staticise symbols

Diffstat:
Mtar.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tar.c b/tar.c @@ -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) {