[WINESYNC] ucrtbase: Implement _malloc_base.
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 17 Jun 2016 00:02:24 +0000 (03:02 +0300)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 2 Feb 2023 13:58:08 +0000 (14:58 +0100)
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
wine commit id 5325b8c95112be75f4fa0e2e2e45bcc88434fb5d by Alex Henrie <alexhenrie24@gmail.com>

sdk/lib/crt/wine/heap.c

index 66fcf5b..88db616 100644 (file)
@@ -456,6 +456,14 @@ void* CDECL MSVCRT_malloc(MSVCRT_size_t size)
   return ret;
 }
 
+/*********************************************************************
+ *                  _malloc_base (UCRTBASE.@)
+ */
+void* CDECL _malloc_base(MSVCRT_size_t size)
+{
+  return MSVCRT_malloc(size);
+}
+
 /*********************************************************************
  *             realloc (MSVCRT.@)
  */