diff options
Diffstat (limited to 'linuxthreads_db')
-rw-r--r-- | linuxthreads_db/thread_dbP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads_db/thread_dbP.h b/linuxthreads_db/thread_dbP.h index 8e0a78a3ac..63b408afc1 100644 --- a/linuxthreads_db/thread_dbP.h +++ b/linuxthreads_db/thread_dbP.h @@ -31,7 +31,7 @@ enum /* Comment out the following for less verbose output. */ #ifndef NDEBUG -# define LOG(c) if (__td_debug) __libc_write (2, c "\n", strlen (c "\n")) +# define LOG(c) if (__td_debug) write (2, c "\n", strlen (c "\n")) extern int __td_debug; #else # define LOG(c) |