aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cbits/HsUnix.c5
-rw-r--r--include/HsUnix.h5
2 files changed, 5 insertions, 5 deletions
diff --git a/cbits/HsUnix.c b/cbits/HsUnix.c
index 8300949..a0b15e9 100644
--- a/cbits/HsUnix.c
+++ b/cbits/HsUnix.c
@@ -8,11 +8,6 @@
#include "HsUnix.h"
-// not part of POSIX, hence may not be always defined
-#ifndef WCOREDUMP
-# define WCOREDUMP(s) 0
-#endif
-
#ifdef HAVE_RTLDNEXT
void *__hsunix_rtldNext (void) {return RTLD_NEXT;}
#endif
diff --git a/include/HsUnix.h b/include/HsUnix.h
index cfc221f..a6bba9a 100644
--- a/include/HsUnix.h
+++ b/include/HsUnix.h
@@ -108,6 +108,11 @@ fall back to O_FSYNC, which should be the same */
#define O_SYNC O_FSYNC
#endif
+// not part of POSIX, hence may not be always defined
+#ifndef WCOREDUMP
+# define WCOREDUMP(s) 0
+#endif
+
// lstat is a macro on some platforms, so we need a wrapper:
int __hsunix_lstat(const char *path, struct stat *buf);