diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-03 21:07:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-03 21:07:41 +0000 |
commit | bdd5fccdeed418f2f79e25aa04a0b06171300c49 (patch) | |
tree | be9d8fe4ea6a1e32f4afd0ac7dc62cb097790a50 /posix | |
parent | 2f1afc880bee4e2f9ebba5eefb45e51c29eaf7ee (diff) | |
download | glibc-bdd5fccdeed418f2f79e25aa04a0b06171300c49.tar.gz glibc-bdd5fccdeed418f2f79e25aa04a0b06171300c49.tar.xz glibc-bdd5fccdeed418f2f79e25aa04a0b06171300c49.zip |
Update.
2000-03-03 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/init-first.c: Remove trace of personality call.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/regex.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/posix/regex.c b/posix/regex.c index 507ac86545..4c66337a24 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -170,6 +170,14 @@ char *realloc (); # endif #endif /* not emacs */ + +#if defined _LIBC || HAVE_LIMITS_H +# include <limits.h> +#endif + +#ifndef MB_LEN_MAX +# define MB_LEN_MAX 1 +#endif /* Get the interface, including the syntax bits. */ #include <regex.h> |