about summary refs log tree commit diff
path: root/Src/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/system.h')
-rw-r--r--Src/system.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Src/system.h b/Src/system.h
index 4ba9bf8ab..50661e0fd 100644
--- a/Src/system.h
+++ b/Src/system.h
@@ -657,3 +657,9 @@ extern short ospeed;
 #ifndef MAILDIR_SUPPORT
 #define mailstat(X,Y) stat(X,Y)
 #endif
+
+#ifdef __CYGWIN__
+# define IS_DIRSEP(c) ((c) == '/' || (c) == '\\')
+#else
+# define IS_DIRSEP(c) ((c) == '/')
+#endif