diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-09-02 13:15:01 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-09-02 13:15:01 +0000 |
| commit | b7bc7f68850d8476c91ec92de290d38dfd278815 (patch) | |
| tree | 15ffe6e9721901cd9f3b5c3c94b47b7134690ed3 /lib/libgnumalloc/cfree.c | |
| parent | 0c4c6c1235fa8dd7541235a4493433fcac73acbd (diff) | |
Notes
Diffstat (limited to 'lib/libgnumalloc/cfree.c')
| -rw-r--r-- | lib/libgnumalloc/cfree.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/libgnumalloc/cfree.c b/lib/libgnumalloc/cfree.c index abaf931a710a..4554903f3a91 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); +} |
