diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-07-31 14:17:31 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-08-02 12:27:17 -0700 |
commit | abd4e94c2b70c68cd7be70c7a75f509ed68daed4 (patch) | |
tree | 015343ef3c6bf38152aeaae4899fb6fffa29d61d /libc | |
parent | 8204eb7eb419af866fe28ae6babe9af706656daa (diff) | |
download | uClibc-alpine-abd4e94c2b70c68cd7be70c7a75f509ed68daed4.tar.bz2 uClibc-alpine-abd4e94c2b70c68cd7be70c7a75f509ed68daed4.tar.xz |
fnmatch.c: Change scope of posixly_correct to be global.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/fnmatch/fnmatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/fnmatch/fnmatch.c b/libc/misc/fnmatch/fnmatch.c index 441671755..00fd4d465 100644 --- a/libc/misc/fnmatch/fnmatch.c +++ b/libc/misc/fnmatch/fnmatch.c @@ -212,7 +212,7 @@ extern int errno; # endif /* Global variable. */ -static smallint posixly_correct; +smallint posixly_correct; /* This function doesn't exist on most systems. */ |