X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/4fab92fbc2b63bac2d89c1dae69fa1845cb640b7..d8710e24c47bf5d7c3dc3a77127d08e4568dc335:/src/OS/os.h-SunOS5 diff --git a/src/OS/os.h-SunOS5 b/src/OS/os.h-SunOS5 index 807212b85..f51b009ef 100644 --- a/src/OS/os.h-SunOS5 +++ b/src/OS/os.h-SunOS5 @@ -43,4 +43,11 @@ a buffer */ #define OS_GETCWD +#ifndef MIN +# define MIN(a,b) (((a)<(b))?(a):(b)) +# define MAX(a,b) (((a)>(b))?(a):(b)) +#endif + +extern char * strndup(const char *, size_t); + /* End */