diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-04-20 09:21:28 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-04-20 09:23:56 -0400 |
commit | d549b029d6d622af531211ef4c7bc48cb5011d93 (patch) | |
tree | ed70bf9345526cfbcef5b01359621ab1dab583b4 /sim/rl78/main.c | |
parent | aee4e85e27f94be438e480b59f3218c6fa3463d5 (diff) | |
download | gdb-d549b029d6d622af531211ef4c7bc48cb5011d93.zip gdb-d549b029d6d622af531211ef4c7bc48cb5011d93.tar.gz gdb-d549b029d6d622af531211ef4c7bc48cb5011d93.tar.bz2 |
sim: rl78/rx: drop unnecessary getopt.h probing
Since getopt.h is provided by libiberty, there's no need to probe for
a system version of it. Plus we already assume it exists in other
parts of the sim.
Diffstat (limited to 'sim/rl78/main.c')
-rw-r--r-- | sim/rl78/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sim/rl78/main.c b/sim/rl78/main.c index 3050863..8d8a79d 100644 --- a/sim/rl78/main.c +++ b/sim/rl78/main.c @@ -30,9 +30,7 @@ #include <assert.h> #include <setjmp.h> #include <signal.h> -#ifdef HAVE_GETOPT_H #include <getopt.h> -#endif #include "libiberty.h" #include "bfd.h" |