diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-20 11:26:27 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-20 11:26:27 +0000 |
commit | 09afa44295b4904de23bae8d6b57883eab8bcb82 (patch) | |
tree | ad61e671ab75d2ce87ab21a68ecf9048df8d3da6 /dmake/winnt | |
parent | 86e4cec467356ef76615c1998ec603ee182618cc (diff) |
INTEGRATION: CWS dmake43p01 (1.1.1.1.132); FILE MERGED
2005/04/17 16:47:05 vq 1.1.1.1.132.1: Issue number: 47135
Submitted by: shay@openoffice.org
Define _POSIX_NAME_MAX and _POSIX_PATH_MAX using the compiler defaults.
Diffstat (limited to 'dmake/winnt')
-rw-r--r-- | dmake/winnt/microsft/sysintf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dmake/winnt/microsft/sysintf.h b/dmake/winnt/microsft/sysintf.h index 86607fd6d7dc..512840a528d1 100644 --- a/dmake/winnt/microsft/sysintf.h +++ b/dmake/winnt/microsft/sysintf.h @@ -1,4 +1,4 @@ -/* RCS $Id: sysintf.h,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $ +/* RCS $Id: sysintf.h,v 1.2 2006-04-20 12:26:27 hr Exp $ -- -- SYNOPSIS -- Interfaces for sysintf.c @@ -50,9 +50,9 @@ extern char * getcwd(); #ifdef _POSIX_NAME_MAX #undef _POSIX_NAME_MAX #endif -#define _POSIX_NAME_MAX 12 +#define _POSIX_NAME_MAX _MAX_FNAME #ifdef _POSIX_PATH_MAX #undef _POSIX_PATH_MAX #endif -#define _POSIX_PATH_MAX 64 +#define _POSIX_PATH_MAX _MAX_PATH |