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

13 lines
104 B
C
Raw Normal View History

/*
* cfree.c
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
void
cfree(void *foo)
1996-09-02 13:15:01 +00:00
{
free(foo);
1996-09-02 13:15:01 +00:00
}