aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/HsUnix.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/HsUnix.h')
-rw-r--r--include/HsUnix.h5
1 files changed, 5 insertions, 0 deletions
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);