get rid of the xfree() wrapper around free(); from Tiago Cunha.

This commit is contained in:
okan
2012-11-07 20:34:39 +00:00
parent dfb6aed82a
commit 76b0874b4c
9 changed files with 36 additions and 45 deletions

View File

@@ -52,12 +52,6 @@ xcalloc(size_t no, size_t siz)
return (p);
}
void
xfree(void *p)
{
free(p);
}
char *
xstrdup(const char *str)
{