diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-11-20 11:04:02 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-11-20 11:04:02 +0000 |
commit | d2d530d679e5709dfdaa5ea40bea4a4d25694930 (patch) | |
tree | 4ddc016b2bfff46c29b3e6ac1d826582d0c0cb25 /lib/libpthread/uthread/pthread_private.h | |
parent | 7d2e94c9d09c05ee3f8f83077637eca08461fe88 (diff) |
fix strcat usage; deraadt
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 2197bb709f6..14c20b26691 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -543,7 +543,7 @@ void _lock_thread(void); void _lock_thread_list(void); void _unlock_thread(void); void _unlock_thread_list(void); -void _thread_exit(char *, int, char *) +void _thread_exit(const char *, int, const char *) __attribute__((noreturn)); void _thread_fd_unlock(int, int); void _thread_fd_unlock_debug(int, int, char *, int); |