sim: cris: clean up rvdummy a bit

This fixes a few warnings when compiling the rvdummy tool.
This commit is contained in:
Mike Frysinger 2015-12-25 05:54:12 -05:00
parent d4a587a4ed
commit 13e49fd636
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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;