diff options
Diffstat (limited to 'lib/filename.h')
-rw-r--r-- | lib/filename.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filename.h b/lib/filename.h index 75c85249a4..7b89d0d06b 100644 --- a/lib/filename.h +++ b/lib/filename.h @@ -29,7 +29,7 @@ extern "C" { IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ - /* Win32, Cygwin, OS/2, DOS */ + /* Native Windows, Cygwin, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ |