git://git.exim.org
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Hurd: errno really uses more than a short-sized value. Bug 2476
[exim.git]
/
src
/
OS
/
os.h-SunOS5
diff --git
a/src/OS/os.h-SunOS5
b/src/OS/os.h-SunOS5
index 45a1171c8c1f632975daff4ebb3a7a99eb1017f2..dfbd8f1afb8b0bb0eec367a9b12cba21a03cb9b5 100644
(file)
--- a/
src/OS/os.h-SunOS5
+++ b/
src/OS/os.h-SunOS5
@@
-37,4
+37,15
@@
it seems. */
#endif
+/* SunOS5 doesn't accept getcwd(NULL, 0) to auto-allocate
+a buffer */
+
+#define OS_GETCWD
+
+
+#ifndef MIN
+# define MIN(a,b) (((a)<(b))?(a):(b))
+# define MAX(a,b) (((a)>(b))?(a):(b))
+#endif
+
/* End */