noice

small file browser
git clone git://git.2f30.org/noice
Log | Files | Refs | README | LICENSE

commit 70d292ed24489347cf1e45a8c2f92814b7ec0823
parent 24567ce6f5f0314513f67d6083c7f823ea0b3b7f
Author: lostd <lostd@2f30.org>
Date:   Thu, 23 Oct 2014 18:12:17 +0300

We don't use realpath(3) anymore

Diffstat:
Mnoice.c | 11-----------
1 file changed, 0 insertions(+), 11 deletions(-)

diff --git a/noice.c b/noice.c @@ -102,17 +102,6 @@ xstrdup(const char *s) } char * -xrealpath(const char *path) -{ - char *p; - - p = realpath(path, NULL); - if (p == NULL) - printerr(1, "realpath"); - return p; -} - -char * xdirname(const char *path) { char *p, *tmp;