diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-28 17:18:28 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-28 17:18:28 +0000 |
commit | 09cce1e0487d0d2882d0104a5a2148221a9e3db6 (patch) | |
tree | a1178a146a047f3264d2892d4e96629edbe1fca0 /libc | |
parent | 86ee08b08e6fa344bc22b28a7fe1cb0f810d7fec (diff) |
Correct regexec
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/regex/regexec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/misc/regex/regexec.c b/libc/misc/regex/regexec.c index a985d9e7e..ab654f705 100644 --- a/libc/misc/regex/regexec.c +++ b/libc/misc/regex/regexec.c @@ -274,6 +274,8 @@ __compat_regexec (const regex_t *__restrict preg, } compat_symbol (libc, __compat_regexec, regexec, GLIBC_2_0); # endif +#elif __UCLIBC__ +weak_alias(__regexec,regexec) #endif /* Entry points for GNU code. */ |