summary refs log tree commit diff
path: root/xmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/xmalloc.c b/xmalloc.c
index 7860b97..27114d1 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -52,12 +52,6 @@ xcalloc(size_t no, size_t siz)
 	return (p);
 }
 
-void
-xfree(void *p)
-{
-	free(p);
-}
-
 char *
 xstrdup(const char *str)
 {