Browse Source

add missing prototypes

Add some missing prototypes

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Peter S. Mazinger 13 years ago
parent
commit
1fc68eae48

+ 2 - 0
include/alloca.h

@@ -67,6 +67,8 @@ extern void *alloca (size_t __size) __THROW;
 #  define extend_alloca(buf, len, newlen) \
    alloca (((len) = (newlen)))
 # endif
+
+extern int __libc_alloca_cutoff (size_t size);
 #endif
 
 __END_DECLS

+ 1 - 0
libc/misc/pthread/tsd.c

@@ -2,6 +2,7 @@
    We define it here instead of in libpthread so t here instead of in libpthread so that it doesn't
    need to have a TLS segment of its own just for this one pointer.  */
 
+void **__libc_dl_error_tsd(void) __attribute__ ((const));
 void ** __attribute__ ((const))
 __libc_dl_error_tsd (void)
 {

+ 2 - 0
libpthread/nptl/sysdeps/generic/dl-tls.c

@@ -66,6 +66,7 @@ oom (void)
 # endif
 
 
+void *_dl_memalign(size_t alignment, size_t bytes);
 void *_dl_memalign(size_t alignment, size_t bytes)
 {
 	return _dl_malloc(bytes);
@@ -836,6 +837,7 @@ __tls_get_addr (GET_ADDR_ARGS)
 
 
 
+void _dl_add_to_slotinfo (struct link_map  *l);
 void
 _dl_add_to_slotinfo (struct link_map  *l)
 {

+ 1 - 0
libpthread/nptl/sysdeps/generic/libc-tls.c

@@ -110,6 +110,7 @@ init_static_tls (size_t memsz, size_t align)
   GL(dl_tls_static_nelem) = GL(dl_tls_max_dtv_idx);
 }
 
+void __libc_setup_tls (size_t tcbsize, size_t tcbalign);
 void
 __libc_setup_tls (size_t tcbsize, size_t tcbalign)
 {

+ 1 - 0
libpthread/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c

@@ -25,6 +25,7 @@ extern void __pthread_cleanup_upto (__jmp_buf env, char *targetframe);
 #pragma weak __pthread_cleanup_upto
 
 
+void _longjmp_unwind (jmp_buf env, int val);
 void
 _longjmp_unwind (jmp_buf env, int val)
 {