[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Lost] [Patch] Fix für liballoc
! libc: liballoc kompiliert jetzt auch mit CONFIG_RELEASE_VERSION wieder
=== src/lib/stdlibc/liballoc.c
==================================================================
--- src/lib/stdlibc/liballoc.c (revision 1400)
+++ src/lib/stdlibc/liballoc.c (local)
@@ -125,7 +125,9 @@
return 0;
}
-static void* liballoc_fill_dword(void* s, dword c, size_t n);
+#ifndef CONFIG_RELEASE_VERSION
+static void* liballoc_fill_dword(void* s, dword c, size_t n);
+#endif
static void* liballoc_alloc( int pages )
{
@@ -162,6 +164,7 @@
return s;
}
+#ifndef CONFIG_RELEASE_VERSION
static void* liballoc_fill_dword(void* s, dword c, size_t n)
{
int i;
@@ -170,6 +173,7 @@
return s;
}
+#endif
static void* liballoc_memcpy(void* s1, const void* s2, size_t n)
{