summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-01-06 14:57:16 +0000
committerJakub Jelinek <jakub@redhat.com>2005-01-06 14:57:16 +0000
commit0ecfa2580d1aedb744deb5af1b60f92c69b9e9e0 (patch)
tree1ef0d0dc09dba23037800d5f3794a77d9b45554f /include
parente4f5d077e9190f57abd49684bd7afcf4325bd348 (diff)
Updated to fedora-glibc-20050106T1443
Diffstat (limited to 'include')
-rw-r--r--include/features.h2
-rw-r--r--include/signal.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/include/features.h b/include/features.h
index ff1de8f472..5e6cca5c86 100644
--- a/include/features.h
+++ b/include/features.h
@@ -295,7 +295,7 @@
/* Major and minor version number of the GNU C library package. Use
these macros to test for features in specific releases. */
#define __GLIBC__ 2
-#define __GLIBC_MINOR__ 3
+#define __GLIBC_MINOR__ 4
#define __GLIBC_PREREQ(maj, min) \
((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
diff --git a/include/signal.h b/include/signal.h
index 104ea8f83a..dc1e0a12e5 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -48,6 +48,9 @@ extern int __sigpause (int sig_or_mask, int is_sig);
extern int __default_sigpause (int mask);
extern int __xpg_sigpause (int sig);
+/* Simplified sigemptyset() implementation without the parameter checking. */
+#undef __sigemptyset
+#define __sigemptyset(ss) (memset (ss, '\0', sizeof (sigset_t)), 0)
/* Allocate real-time signal with highest/lowest available priority. */