X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2FOS%2Fos.h-SunOS5;h=dfbd8f1afb8b0bb0eec367a9b12cba21a03cb9b5;hb=f374b08a8eb32aebe9d3a4a0455313ca911c3ff8;hp=45a1171c8c1f632975daff4ebb3a7a99eb1017f2;hpb=468c0c7e3066886ff5028bb423b96712a155fe05;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/OS/os.h-SunOS5 b/src/OS/os.h-SunOS5 index 45a1171c8..dfbd8f1af 100644 --- 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 */