This website requires JavaScript.
Explore
Help
Sign In
mirror
/
freebsd
Watch
1
Star
0
Fork
0
You've already forked freebsd
mirror of
https://git.FreeBSD.org/src.git
synced
2024-12-19 10:53:58 +00:00
Code
Issues
Releases
Activity
76183f3453
freebsd
/
lib
/
libgnumalloc
/
cfree.c
13 lines
104 B
C
Raw
Normal View
History
Unescape
Escape
Add __FBSDID()s to internal libgnumalloc()
2001-09-30 21:38:17 +00:00
/*
*
cfree
.
c
*/
#
include
<sys/cdefs.h>
__FBSDID
(
"
$FreeBSD$
"
)
;
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