Changeset 3188 for trunk/essentials/dev-lang/perl/util.h
- Timestamp:
- Apr 22, 2007, 10:57:48 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/dev-lang/perl/util.h
r3187 r3188 27 27 || ((f)[0] == '\\' && (f)[1] == '\\') /* UNC path */ \ 28 28 || ((f)[3] == ':')) /* volume name, currently only sys */ 29 # else /* !NETWARE */ 30 # if defined( DOSISH) || defined(EPOC) 29 # else /* !__NETWARE */ 30 # if defined( __KLIBC__) 31 # define PERL_FILE_IS_ABSOLUTE(f) \ 32 (*(f) == '/' || *(f) == '\\' \ 33 || ((f)[1] == ':' && (f)[2] == '/') || ((f)[1] == ':' && (f)[2] == '\\')) /* drive name */ 34 # else /* !__KLIBC__ */ 35 # if defined( DOSISH) || defined(EPOC) 31 36 # define PERL_FILE_IS_ABSOLUTE(f) \ 32 37 (*(f) == '/' \ … … 40 45 # endif /* DOSISH */ 41 46 # endif /* NETWARE */ 47 # endif /* __KLIBC__ */ 42 48 # endif /* WIN32 */ 43 49 #endif /* VMS */
Note:
See TracChangeset
for help on using the changeset viewer.