From: Ulrich Drepper Date: Mon, 26 Nov 2007 13:07:53 +0000 (+0000) Subject: Define REG_ENOSYS also for Unix98. X-Git-Tag: cvs/fedora-glibc-20071212T1051~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79fb2e026bb76ef2d80a4c75297bae59018e9613;p=platform%2Fupstream%2Fglibc.git Define REG_ENOSYS also for Unix98. * posix/regex.h (REG_ENOSYS): Likewise. --- diff --git a/ChangeLog b/ChangeLog index 3b75f0a..fe29d4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2007-11-26 Ulrich Drepper * posix/unistd.h: Declare fsync also for Unix98. + * posix/regex.h (REG_ENOSYS): Likewise. 2007-11-25 Ulrich Drepper diff --git a/posix/regex.h b/posix/regex.h index 807c404..3fbbb05 100644 --- a/posix/regex.h +++ b/posix/regex.h @@ -302,7 +302,7 @@ extern reg_syntax_t re_syntax_options; `re_error_msg' table in regex.c. */ typedef enum { -#ifdef _XOPEN_SOURCE +#if defined _XOPEN_SOURCE || defined __USE_UNIX98 REG_ENOSYS = -1, /* This will never happen for this implementation. */ #endif