OSDN Git Service

2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Mon, 15 Jul 2002 21:13:32 +0000 (21:13 +0000)
committerjjohnstn <jjohnstn>
Mon, 15 Jul 2002 21:13:32 +0000 (21:13 +0000)
        * libc/sys/linux/callocr.c: Fix so code references
        calloc.

newlib/ChangeLog
newlib/libc/sys/linux/callocr.c

index 5dd3e5e..9959585 100644 (file)
@@ -1,5 +1,10 @@
 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.
         * libc/sys/linux/Makefile.in: Regenerated.
         * libc/sys/linux/bp-sym.h: Moved to include directory.
index 818e05a..bff43b8 100644 (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);
+}