X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fpathname.h;h=75daa659401d3945a1c31c5b553db313fa09af05;hb=9b9bfb49af70f53f177c7a6563fa844a4a50c7db;hp=7b817a4f724251fa54596ff7102d63cb89626a76;hpb=ac52880a4604e1b2cd72ae710870e3d463a12d84;p=gnulib.git diff --git a/lib/pathname.h b/lib/pathname.h index 7b817a4f7..75daa6594 100644 --- a/lib/pathname.h +++ b/lib/pathname.h @@ -1,5 +1,5 @@ /* Pathname support. - Copyright (C) 2001-2002 Free Software Foundation, Inc. + Copyright (C) 2001-2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,8 +24,8 @@ it may be concatenated to a directory pathname. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ -#if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ - /* Win32, OS/2, DOS */ +#if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ + /* Win32, 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')) \