Otherwise we get compiler errors due to undefined prototypes as noticed by Denys.
Signed-off-by: Timo Teräs <[email protected]> --- libc/misc/internals/__uClibc_main.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libc/misc/internals/__uClibc_main.c b/libc/misc/internals/__uClibc_main.c index f9e1244..1bef28f 100644 --- a/libc/misc/internals/__uClibc_main.c +++ b/libc/misc/internals/__uClibc_main.c @@ -69,6 +69,7 @@ uintptr_t __guard attribute_relro; void internal_function _dl_aux_init (ElfW(auxv_t) *av); +#ifdef __UCLIBC_HAS_THREADS__ /* * uClibc internal locking requires that we have weak aliases * for dummy functions in case libpthread.a is not linked in. @@ -102,6 +103,7 @@ _pthread_cleanup_pop_restore(struct _pthread_cleanup_buffer *__buffer, if (__execute) __buffer->__routine(__buffer->__arg); } +#endif /* __UCLIBC_HAS_THREADS__ */ #endif /* !SHARED */ -- 1.7.0.4 _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
