This website requires JavaScript.
Explore
Help
Sign In
d
/
freebsd-nq
Watch
1
Star
0
Fork
0
You've already forked freebsd-nq
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
218a1b63d6
freebsd-nq
/
lib
/
libgnumalloc
/
cfree.c
6 lines
38 B
C
Raw
Normal View
History
Unescape
Escape
Repository copy libfakegnumalloc to libgnumalloc and remove the symlink stuff and detection for the "gnumalloc" port which doesn't exist and nobody has cared enough about for the past 6 months or so to implement. As has been pointed out to me (quite a few times) in email, the people that had been bitten by the changes had failed to follow the instructions about updating /etc/rc. Bruce also pointed out that after my last commit, it was no longer removing /usr/lib/libgnumalloc.so.2.0 as it should have been. Hopefully this (and the comments in the Makefile) should defuse the problem a bit.
1996-09-27 06:58:05 +00:00
void
cfree
(
void
*
foo
)
Add cfree, Move to usr/lib/compat
1996-09-02 13:15:01 +00:00
{
Repository copy libfakegnumalloc to libgnumalloc and remove the symlink stuff and detection for the "gnumalloc" port which doesn't exist and nobody has cared enough about for the past 6 months or so to implement. As has been pointed out to me (quite a few times) in email, the people that had been bitten by the changes had failed to follow the instructions about updating /etc/rc. Bruce also pointed out that after my last commit, it was no longer removing /usr/lib/libgnumalloc.so.2.0 as it should have been. Hopefully this (and the comments in the Makefile) should defuse the problem a bit.
1996-09-27 06:58:05 +00:00
free
(
foo
)
;
Add cfree, Move to usr/lib/compat
1996-09-02 13:15:01 +00:00
}
Reference in New Issue
Copy Permalink