summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-01-10 20:20:39 +0000
committerUlrich Drepper <drepper@redhat.com>2006-01-10 20:20:39 +0000
commit8bf3d8e8ce3441332d0b6c860f481a28e33735c2 (patch)
treec4936f8878f4a00a4e2f30252612a0381a2c5f93 /include
parent9e6c38d2c7cb78a1dd8b67c602e956e4d49630fe (diff)
Don't include jmpbuf-offsets.h if _ISOMAC is defined.
Diffstat (limited to 'include')
-rw-r--r--include/bits/setjmp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/bits/setjmp.h b/include/bits/setjmp.h
index 226de7fee8..de6c81dc24 100644
--- a/include/bits/setjmp.h
+++ b/include/bits/setjmp.h
@@ -2,4 +2,6 @@
plus the JB_* macros from the private header <jmpbuf-offsets.h>. */
#include_next <bits/setjmp.h>
-#include <jmpbuf-offsets.h>
+#ifndef _ISOMAC
+# include <jmpbuf-offsets.h>
+#endif