diff options
Diffstat (limited to 'lib/libgnumalloc/cfree.c')
-rw-r--r-- | lib/libgnumalloc/cfree.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/libgnumalloc/cfree.c b/lib/libgnumalloc/cfree.c new file mode 100644 index 0000000..e570228 --- /dev/null +++ b/lib/libgnumalloc/cfree.c @@ -0,0 +1,12 @@ +/* + * cfree.c + */ + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +void +cfree(void *foo) +{ + free(foo); +} |