diff options
author | phk <phk@FreeBSD.org> | 1996-09-02 13:15:01 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-09-02 13:15:01 +0000 |
commit | a74ea45a26f38149f5e54d1f975524fbce7ab15b (patch) | |
tree | 15ffe6e9721901cd9f3b5c3c94b47b7134690ed3 /lib/libgnumalloc | |
parent | 59f8ce79a3d600161bcc0b3dd607ec17c06cc26f (diff) | |
download | FreeBSD-src-a74ea45a26f38149f5e54d1f975524fbce7ab15b.zip FreeBSD-src-a74ea45a26f38149f5e54d1f975524fbce7ab15b.tar.gz |
Add cfree,
Move to usr/lib/compat
Diffstat (limited to 'lib/libgnumalloc')
-rw-r--r-- | lib/libgnumalloc/Makefile | 3 | ||||
-rw-r--r-- | lib/libgnumalloc/cfree.c | 11 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lib/libgnumalloc/Makefile b/lib/libgnumalloc/Makefile index 01fca56..98573e7 100644 --- a/lib/libgnumalloc/Makefile +++ b/lib/libgnumalloc/Makefile @@ -1,6 +1,7 @@ -# $Id: Makefile,v 1.2 1996/02/12 12:40:04 phk Exp $ +# $Id: Makefile,v 1.3 1996/08/30 01:08:03 peter Exp $ LIB= fakegnumalloc +LIBDIR= /usr/lib/compat SHLIB_MAJOR= 2 SHLIB_MINOR= 0 SRCS= fakegnumalloc.c diff --git a/lib/libgnumalloc/cfree.c b/lib/libgnumalloc/cfree.c index abaf931..4554903 100644 --- a/lib/libgnumalloc/cfree.c +++ b/lib/libgnumalloc/cfree.c @@ -1 +1,10 @@ -int fake_a_gnumalloc_lib() { return 1; } +int +fake_a_gnumalloc_lib() +{ +return 1; +} + +void cfree(void *foo) +{ +free(foo); +} |