aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-10-12 13:43:15 +0100
committerRon Yorston <rmy@pobox.com>2021-10-12 13:43:15 +0100
commitb4b2b2c4fbba12561c5e988177bef699be306b26 (patch)
treeaf6ee5b26f0f775264eb8afb1af63415818e2a7e /include
parent0d127fbf4bbcd09f36740019ef129851464f8660 (diff)
downloadbusybox-w32-b4b2b2c4fbba12561c5e988177bef699be306b26.tar.gz
busybox-w32-b4b2b2c4fbba12561c5e988177bef699be306b26.tar.bz2
busybox-w32-b4b2b2c4fbba12561c5e988177bef699be306b26.zip
win32: rename is_absolute_path()
As the comment pointed out is_absolute_path() was misnamed. Rename it to is_relative_path() and change the sense of all tests.
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 74a65116c..6ace91470 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -579,4 +579,4 @@ void make_sparse(int fd, off_t start, off_t end);
579int skip_ansi_emulation(int reset); 579int skip_ansi_emulation(int reset);
580int unix_path(const char *path); 580int unix_path(const char *path);
581int has_path(const char *file); 581int has_path(const char *file);
582int is_absolute_path(const char *path); 582int is_relative_path(const char *path);