* linux-low.c: Include <errno.h>. Remove extern declaration of
authorDaniel Jacobowitz <drow@false.org>
Fri, 12 Mar 2004 20:51:50 +0000 (20:51 +0000)
committerDaniel Jacobowitz <drow@false.org>
Fri, 12 Mar 2004 20:51:50 +0000 (20:51 +0000)
errno.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c

index a389f0f72ea691f1daf66976d0c30ed5dcd3d7e1..e718fa65e6182b169fdf8525ca91dd43f50b9c49 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-12  Daniel Jacobowitz  <drow@mvista.com>
+
+       * linux-low.c: Include <errno.h>.  Remove extern declaration of
+       errno.
+
 2004-03-12  Daniel Jacobowitz  <drow@mvista.com>
 
        * gdbreplay.c, server.h, utils.c: Update copyright years.
index 69b35c1032ba83575aaf2e01e73094f28902f644..a3d6a54d9cfdf4b5bd4b964e813b7ea67636ee0a 100644 (file)
@@ -34,6 +34,7 @@
 #include <string.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <errno.h>
 
 /* ``all_threads'' is keyed by the LWP ID - it should be the thread ID instead,
    however.  This requires changing the ID in place when we go from !using_threads
@@ -69,8 +70,6 @@ struct pending_signals
 static int use_regsets_p = 1;
 #endif
 
-extern int errno;
-
 int debug_threads = 0;
 
 #define pid_of(proc) ((proc)->head.id)