diff options
author | Ron Yorston <rmy@pobox.com> | 2021-03-01 09:20:58 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-03-01 09:20:58 +0000 |
commit | b2ea5c74c8e2a26f9d9e8978d41a2368693e5ff7 (patch) | |
tree | 93bafe054a07f805ec2d0d17f930328001710c56 /include | |
parent | aa1512610a7d5081f0b721e7dc24a95527c07a95 (diff) | |
download | busybox-w32-b2ea5c74c8e2a26f9d9e8978d41a2368693e5ff7.tar.gz busybox-w32-b2ea5c74c8e2a26f9d9e8978d41a2368693e5ff7.tar.bz2 busybox-w32-b2ea5c74c8e2a26f9d9e8978d41a2368693e5ff7.zip |
win32: move is_absolute_path()
Make is_absolute_path() a function rather than a macro and move it
from ash.c into mingw.c.
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index 5cb5cb88c..d48237add 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -561,3 +561,4 @@ void make_sparse(int fd, off_t start, off_t end); | |||
561 | int skip_ansi_emulation(int reset); | 561 | int skip_ansi_emulation(int reset); |
562 | int unix_path(const char *path); | 562 | int unix_path(const char *path); |
563 | int has_path(const char *file); | 563 | int has_path(const char *file); |
564 | int is_absolute_path(const char *path); | ||