~ chicken-core (chicken-5) 1d4b209da2210e702017165e3ca154f94d7fcc98
commit 1d4b209da2210e702017165e3ca154f94d7fcc98
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Mon Feb 22 11:28:19 2010 +0100
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Mon Feb 22 11:28:19 2010 +0100
use PATH_MAX instead of MAX_PATH
diff --git a/chicken.h b/chicken.h
index 3b1989e0..d3c25076 100644
--- a/chicken.h
+++ b/chicken.h
@@ -664,11 +664,7 @@ typedef unsigned __int64 uint64_t;
# define C_SOFTWARE_VERSION "unknown"
#endif
-#ifdef C_XXXBSD
-# define C_MAX_PATH PATH_MAX
-#else
-# define C_MAX_PATH MAX_PATH
-#endif
+#define C_MAX_PATH PATH_MAX
/* Types: */
Trap