2002-07-15 Jeff Johnston <jjohnstn@redhat.com>

* libc/sys/linux/callocr.c: Fix so code references
        calloc.
This commit is contained in:
Jeff Johnston 2002-07-15 21:13:32 +00:00
parent edba3282e8
commit 8cb61a96e6
2 changed files with 12 additions and 1 deletions

View File

@ -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>
* libc/sys/linux/Makefile.am: Add new files.

View File

@ -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);
}