Module: wine Branch: refs/heads/master Commit: d9de5217aeaeec1ccdd1e2c33111a792df73cbb5 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=d9de5217aeaeec1ccdd1e2c3...
Author: Jeremy White jwhite@codeweavers.com Date: Mon Jun 19 22:36:30 2006 +0200
ntdll: On Solaris, limits.h is required for PATH_MAX.
---
dlls/ntdll/directory.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/ntdll/directory.c b/dlls/ntdll/directory.c index 970bfa0..14a71b4 100644 --- a/dlls/ntdll/directory.c +++ b/dlls/ntdll/directory.c @@ -31,6 +31,7 @@ #include <stdarg.h> #include <string.h> #include <stdlib.h> #include <stdio.h> +#include <limits.h> #ifdef HAVE_MNTENT_H #include <mntent.h> #endif