(svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and')

This commit is contained in:
glx 2007-07-18 02:08:56 +00:00
parent b6d6e407ad
commit d8690139b4
1 changed files with 2 additions and 2 deletions

View File

@ -349,10 +349,10 @@ CDECL error(const char *str, ...);
#define _stricmp strcasecmp
#endif
#if !defined(MORPHOS) and !defined(OPENBSD)
#if !defined(MORPHOS) && !defined(OPENBSD)
/* MorphOS & OpenBSD don't know wchars, the rest does :( */
#define HAS_WCHAR
#endif /* !defined(MORHPOS) and !defined(OPENBSD) */
#endif /* !defined(MORPHOS) && !defined(OPENBSD) */
#if !defined(MAX_PATH)
# define MAX_PATH 260