We don't use realpath(3) anymore

This commit is contained in:
lostd 2014-10-23 18:12:17 +03:00
parent 24567ce6f5
commit 70d292ed24
1 changed files with 0 additions and 11 deletions

11
noice.c
View File

@ -101,17 +101,6 @@ xstrdup(const char *s)
return p;
}
char *
xrealpath(const char *path)
{
char *p;
p = realpath(path, NULL);
if (p == NULL)
printerr(1, "realpath");
return p;
}
char *
xdirname(const char *path)
{