about summary refs log tree commit diff
path: root/stdlib/tst-tls-atexit-lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/tst-tls-atexit-lib.c')
-rw-r--r--stdlib/tst-tls-atexit-lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/tst-tls-atexit-lib.c b/stdlib/tst-tls-atexit-lib.c
index 2945379eed..2478d80f72 100644
--- a/stdlib/tst-tls-atexit-lib.c
+++ b/stdlib/tst-tls-atexit-lib.c
@@ -31,7 +31,7 @@ void A_dtor (void *obj)
   ((A *)obj)->val = obj;
 }
 
-void do_foo (void)
+void reg_dtor (void)
 {
   static __thread A b;
   __cxa_thread_atexit_impl (A_dtor, &b, __dso_handle);