1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00
freebsd/lib/libgnumalloc/cfree.c
2001-09-30 21:38:17 +00:00

13 lines
104 B
C

/*
* cfree.c
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
void
cfree(void *foo)
{
free(foo);
}