diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-02 14:32:17 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-02 14:32:17 -0400 |
commit | 129ca6c05d9ad155b02ed9198798c5e33673f195 (patch) | |
tree | 39fc1a6db6b9d353d8a92ec98d1cafd06e1e8a0d /src/misc | |
parent | 970ef6a1240adfd685c27bf3407dfd06606a17e8 (diff) | |
download | musl-129ca6c05d9ad155b02ed9198798c5e33673f195.tar.gz |
fix missing static in getusershell (namespace pollution)
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/getusershell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/getusershell.c b/src/misc/getusershell.c index 11e697b6..683158c8 100644 --- a/src/misc/getusershell.c +++ b/src/misc/getusershell.c @@ -6,7 +6,7 @@ static const char defshells[] = "/bin/sh\n/bin/csh\n"; static char *line; -size_t linesize; +static size_t linesize; static FILE *f; void endusershell(void) |