xfree: move xfree() function to xmalloc.c

Signed-off-by: whzhe <wanghongzhe@huawei.com>
This commit is contained in:
w00475903
2020-10-12 21:29:37 -04:00
parent 18c5c6139d
commit e24700fd5d
3 changed files with 8 additions and 6 deletions

View File

@@ -66,3 +66,10 @@
{
return strcpy (xmalloc (strlen (str) + 1), str);
}
void xfree(void *ap)
{
if (ap) {
free(ap);
}
}