diff options
Diffstat (limited to 'libc/stdlib/malloc-standard/thread-freeres.c')
-rw-r--r-- | libc/stdlib/malloc-standard/thread-freeres.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libc/stdlib/malloc-standard/thread-freeres.c b/libc/stdlib/malloc-standard/thread-freeres.c index 37cd234ed..f61b38b4a 100644 --- a/libc/stdlib/malloc-standard/thread-freeres.c +++ b/libc/stdlib/malloc-standard/thread-freeres.c @@ -42,8 +42,19 @@ do { \ DEFINE_HOOK (__libc_thread_subfreeres, (void)); +/* + * This needs a lot of work. + */ +#if 0 void __attribute__ ((section ("__libc_thread_freeres_fn"))) __libc_thread_freeres (void) { RUN_HOOK (__libc_thread_subfreeres, ()); } +#else +void +__libc_thread_freeres (void) +{ + return; +} +#endif |