diff options
author | Christopher Faylor <me@cgf.cx> | 2001-06-04 01:28:09 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-06-04 01:28:09 +0000 |
commit | ac5561f2ed95d2ffcb81723d9556aadc1768ca04 (patch) | |
tree | dcac3dbe7a95d896583c184f7de830ad0b9ddc2f /winsup/cygwin/path.h | |
parent | 9f13167f7789db27d1090a78c847f5a0e81e01f6 (diff) | |
download | cygnal-ac5561f2ed95d2ffcb81723d9556aadc1768ca04.tar.gz cygnal-ac5561f2ed95d2ffcb81723d9556aadc1768ca04.tar.bz2 cygnal-ac5561f2ed95d2ffcb81723d9556aadc1768ca04.zip |
* path.cc (normalize_posix_path): Revert .. check removed by previous changes.
* cygheap.h: Temporarily declare path_prefix_p here.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r-- | winsup/cygwin/path.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index ee23d9fd9..9bc36c01c 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -167,5 +167,5 @@ has_exec_chars (const char *buf, int len) (buf[0] == 'M' && buf[1] == 'Z')); } -extern int pathmatch (const char *path1, const char *path2); -extern int pathnmatch (const char *path1, const char *path2, int len); +int pathmatch (const char *path1, const char *path2) __attribute__ ((regparm (2))); +int pathnmatch (const char *path1, const char *path2, int len) __attribute__ ((regparm (2))); |