This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] sim: cris: clean up rvdummy a bit


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=13e49fd6364e94625985b9eb15da5b1decd6a196

commit 13e49fd6364e94625985b9eb15da5b1decd6a196
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Fri Dec 25 05:54:12 2015 -0500

    sim: cris: clean up rvdummy a bit
    
    This fixes a few warnings when compiling the rvdummy tool.

Diff:
---
 sim/cris/ChangeLog | 5 +++++
 sim/cris/rvdummy.c | 3 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog
index 66ef461..6fa2523 100644
--- a/sim/cris/ChangeLog
+++ b/sim/cris/ChangeLog
@@ -1,5 +1,10 @@
 2015-12-25  Mike Frysinger  <vapier@gentoo.org>
 
+	* rvdummy.c (_GNU_SOURCE): Delete.
+	(setupsocket): Mark static.
+
+2015-12-25  Mike Frysinger  <vapier@gentoo.org>
+
 	* Makefile.in (SIM_OBJS): Delete sim-model.o.
 	* tconfig.h (SIM_HAVE_MODEL): Delete.
 
diff --git a/sim/cris/rvdummy.c b/sim/cris/rvdummy.c
index f788686..994992c 100644
--- a/sim/cris/rvdummy.c
+++ b/sim/cris/rvdummy.c
@@ -36,7 +36,6 @@ main (int argc, char *argv[])
 #include "getopt.h"
 #include "libiberty.h"
 
-#define _GNU_SOURCE
 #include <stdio.h>
 
 #ifdef HAVE_UNISTD_H
@@ -104,7 +103,7 @@ static void handle_input_file (int, char *);
    connection.  Return a file descriptor for the connection or -1 on
    error.  */
 
-int setupsocket (void)
+static int setupsocket (void)
 {
   int s;
   socklen_t len;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]