diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-07-31 14:17:31 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-07-31 14:17:31 -0700 |
commit | b417523ff67971804213bc9f874e40064c8cced4 (patch) | |
tree | e87f41ac0c82d0a9b2cffe2ae3d278482586c1b7 /libc | |
parent | f14b97ca922f6afaa0d08e737259fc436af9b665 (diff) | |
download | uClibc-alpine-b417523ff67971804213bc9f874e40064c8cced4.tar.bz2 uClibc-alpine-b417523ff67971804213bc9f874e40064c8cced4.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. */ |