diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-11 23:30:48 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-11 23:30:48 +0000 |
commit | 09c95bb14fd314b0529e1183c26d72dba386832a (patch) | |
tree | 3535635636320490d0ecd4c2fdf572eb140dd176 /winsup | |
parent | 077d8b23c867d95ca8742fdb9102a4450ea6e397 (diff) | |
download | newlib-09c95bb14fd314b0529e1183c26d72dba386832a.zip newlib-09c95bb14fd314b0529e1183c26d72dba386832a.tar.gz newlib-09c95bb14fd314b0529e1183c26d72dba386832a.tar.bz2 |
fix comment
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/path.cc | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index f894af4..a97c9df 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -1292,14 +1292,7 @@ slash_unc_prefix_p (const char *path) return ret && isalnum (p[1]); } -/* conv_path_list: Convert a list of path names to/from Win32/POSIX. - - SRC is not a const char * because we temporarily modify it to ease - the implementation. - - I believe Win32 always has '.' in $PATH. POSIX obviously doesn't. - We certainly don't want to handle that here, but it is something for - the caller to think about. */ +/* conv_path_list: Convert a list of path names to/from Win32/POSIX. */ static void conv_path_list (const char *src, char *dst, int to_posix_p) |