about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-11-26 13:07:53 +0000
committerUlrich Drepper <drepper@redhat.com>2007-11-26 13:07:53 +0000
commit79fb2e026bb76ef2d80a4c75297bae59018e9613 (patch)
tree9572d0ccac24d4f5cd25de5a9bc1dd74cf0d3eae
parentae4287f8b28853c6c51b5b5aae5807d23730d1d5 (diff)
downloadglibc-79fb2e026bb76ef2d80a4c75297bae59018e9613.tar.gz
glibc-79fb2e026bb76ef2d80a4c75297bae59018e9613.tar.xz
glibc-79fb2e026bb76ef2d80a4c75297bae59018e9613.zip
Define REG_ENOSYS also for Unix98.
	* posix/regex.h (REG_ENOSYS): Likewise.
-rw-r--r--ChangeLog1
-rw-r--r--posix/regex.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b75f0a33c..fe29d4f5ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2007-11-26  Ulrich Drepper  <drepper@redhat.com>
 
 	* posix/unistd.h: Declare fsync also for Unix98.
+	* posix/regex.h (REG_ENOSYS): Likewise.
 
 2007-11-25  Ulrich Drepper  <drepper@redhat.com>
 
diff --git a/posix/regex.h b/posix/regex.h
index 807c404ec2..3fbbb05dfd 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