From 182104b0579cb85bfa5cfe7abdb2e14257d9c1e9 Mon Sep 17 00:00:00 2001 From: Hasso Tepper Date: Fri, 25 Sep 2009 10:20:43 +0300 Subject: [PATCH] __sys__exit() -> __sys_exit() Reported-by: Jeremy C. Reed --- lib/libc_r/uthread/pthread_private.h | 2 +- lib/libc_r/uthread/uthread_exit.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc_r/uthread/pthread_private.h b/lib/libc_r/uthread/pthread_private.h index 1b89dc094e..a0e1faef2a 100644 --- a/lib/libc_r/uthread/pthread_private.h +++ b/lib/libc_r/uthread/pthread_private.h @@ -1332,7 +1332,7 @@ int __sys_sigreturn(ucontext_t *); /* #include */ #ifdef _UNISTD_H_ -void __sys__exit(int); +void __sys_exit(int); int __sys_close(int); int __sys_closefrom(int); int __sys_dup(int); diff --git a/lib/libc_r/uthread/uthread_exit.c b/lib/libc_r/uthread/uthread_exit.c index 527e58a20a..37ed7fc627 100644 --- a/lib/libc_r/uthread/uthread_exit.c +++ b/lib/libc_r/uthread/uthread_exit.c @@ -77,7 +77,7 @@ void __exit(int status) } /* Call the _exit syscall: */ - __sys__exit(status); + __sys_exit(status); } __strong_reference(__exit, _exit); -- 2.11.4.GIT