diff options
author | Kevin Buettner <kevinb@redhat.com> | 2002-12-09 18:41:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2002-12-09 18:41:42 +0000 |
commit | 1b84163ebf47b31eb8e53a63d5027512811fbe96 (patch) | |
tree | 170f0465373b89b1321d344e0ba2a02d6faad131 /gdb/lin-lwp.c | |
parent | bdd78e628a376e2c2c4faa9178f5d574cc026670 (diff) | |
download | gdb-1b84163ebf47b31eb8e53a63d5027512811fbe96.zip gdb-1b84163ebf47b31eb8e53a63d5027512811fbe96.tar.gz gdb-1b84163ebf47b31eb8e53a63d5027512811fbe96.tar.bz2 |
* lin-lwp.c (strsignal): Make extern declaration match that of glibc.
Diffstat (limited to 'gdb/lin-lwp.c')
-rw-r--r-- | gdb/lin-lwp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/lin-lwp.c b/gdb/lin-lwp.c index 444c221..0b30cea 100644 --- a/gdb/lin-lwp.c +++ b/gdb/lin-lwp.c @@ -34,7 +34,7 @@ #include "gdbcmd.h" static int debug_lin_lwp; -extern const char *strsignal (int sig); +extern char *strsignal (int sig); /* On GNU/Linux there are no real LWP's. The closest thing to LWP's are processes sharing the same VM space. A multi-threaded process |