diff options
author | Rob Landley <rob@landley.net> | 2012-11-22 21:18:09 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-11-22 21:18:09 -0600 |
commit | fe91e68e8d1e6a2974b57a9855032ad94d137e8e (patch) | |
tree | c6a347d54dae31c9572008133d6610df8c8dc475 /lib/lib.h | |
parent | bd2e2279d2b8f491ff9a56f6bd9000b0215778f8 (diff) | |
download | toybox-fe91e68e8d1e6a2974b57a9855032ad94d137e8e.tar.gz |
Remove readlink -m for being poorly defined ("readlink -m /dev/null/and/more" answers what question, exactly?), rewrite xabspath() to work right and not depend on realpath, fix subtle longstanding bug in llist_traverse().
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ char *readfile(char *name); char *xreadfile(char *name); char *xgetcwd(void); void xstat(char *path, struct stat *st); -char *xabspath(char *path, unsigned missing); +char *xabspath(char *path, int exact); char *xrealpath(char *path); void xchdir(char *path); void xmkpath(char *path, int mode); |