diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-05-29 15:20:28 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-12 22:19:30 -0400 |
commit | 2726bbc3391eddf0f75da56011137d327a156aab (patch) | |
tree | 6654c280a2cb29802f304a5321c036deb6113f79 /sim/cris/rvdummy.c | |
parent | a80249d0a9da850e8971f45beb435ad4f154447d (diff) | |
download | fsf-binutils-gdb-2726bbc3391eddf0f75da56011137d327a156aab.zip fsf-binutils-gdb-2726bbc3391eddf0f75da56011137d327a156aab.tar.gz fsf-binutils-gdb-2726bbc3391eddf0f75da56011137d327a156aab.tar.bz2 |
sim: assume sys/select.h always exists
Now that gnulib provides this, assume it exists.
Diffstat (limited to 'sim/cris/rvdummy.c')
-rw-r--r-- | sim/cris/rvdummy.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sim/cris/rvdummy.c b/sim/cris/rvdummy.c index b53e823..719b2fc 100644 --- a/sim/cris/rvdummy.c +++ b/sim/cris/rvdummy.c @@ -48,16 +48,13 @@ main (int argc, char *argv[]) #include <sys/time.h> -#ifdef HAVE_SYS_SELECT_H -#include <sys/select.h> -#endif - #include <errno.h> /* Not guarded in dv-sockser.c, so why here. */ #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> +#include <sys/select.h> #include <sys/socket.h> enum rv_command { |