diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-18 09:34:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-18 09:34:50 +0000 |
commit | 9281f45d10af14f1f1dd884e8c77d293240c7412 (patch) | |
tree | e104b4c82d22e0932f3ec1dbb1a98611ebb24bc6 /sysdeps/posix | |
parent | f1a785acbf05051be4963474f2307aad77fff16b (diff) | |
download | glibc-9281f45d10af14f1f1dd884e8c77d293240c7412.tar glibc-9281f45d10af14f1f1dd884e8c77d293240c7412.tar.gz glibc-9281f45d10af14f1f1dd884e8c77d293240c7412.tar.bz2 glibc-9281f45d10af14f1f1dd884e8c77d293240c7412.zip |
Update.
2000-01-18 Ulrich Drepper <drepper@cygnus.com>
* posix/regex.h (RE_SYNTAX_POSIX_EXTENDED): Add RE_CONTEXT_INVALID_OPS.
* posix/regex.c (regex_compile): Return appropriate errors for
unterminated brace expressions. Detect invalid characters
in brace expressions.
* posix/bits/posix2_lim.h: Define RE_DUP_MAX correctly.
* sysdeps/posix/sysconf.c: Include regex.h.
Reported by Geoff Clare <gwc@unisoft.com> (PR libc/1522).
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/sysconf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c index e30723f177..e3177d0155 100644 --- a/sysdeps/posix/sysconf.c +++ b/sysdeps/posix/sysconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 93, 95, 96, 97, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 93, 95, 96, 97, 99, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -25,6 +25,8 @@ #include <time.h> #include <unistd.h> #include <sys/sysinfo.h> +#include <sys/types.h> +#include <regex.h> /* Get the value of the system variable NAME. */ |