]> sourceware.org Git - newlib-cygwin.git/commitdiff
2002-07-15 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Mon, 15 Jul 2002 21:13:32 +0000 (21:13 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
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 5dd3e5e8cb73b8bc937e4ad65c612a5beca6816b..9959585b7f12144bb2732a704a58ee69c169dd94 100644 (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.
index 818e05a75788a66d4bf2a01331cd7b26aba69023..bff43b8c3317eee5c3dd287da8a52d41d9283085 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);
+}
This page took 0.045684 seconds and 5 git commands to generate.