2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/callocr.c: Fix so code references calloc.
This commit is contained in:
parent
edba3282e8
commit
8cb61a96e6
|
@ -1,3 +1,8 @@
|
||||||
|
2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
* libc/sys/linux/callocr.c: Fix so code references
|
||||||
|
calloc.
|
||||||
|
|
||||||
2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
|
2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/sys/linux/Makefile.am: Add new files.
|
* libc/sys/linux/Makefile.am: Add new files.
|
||||||
|
|
|
@ -1 +1,7 @@
|
||||||
/* dummy file to override one object in stdlib directory */
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
void *
|
||||||
|
_calloc_r (struct _reent *ptr, size_t size, size_t len)
|
||||||
|
{
|
||||||
|
return calloc (size, len);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue