diff options
Diffstat (limited to 'sim/rx/main.c')
-rw-r--r-- | sim/rx/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sim/rx/main.c b/sim/rx/main.c index 350c7ae..a83794e 100644 --- a/sim/rx/main.c +++ b/sim/rx/main.c @@ -19,13 +19,21 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "config.h" #include <stdio.h> #include <string.h> +#ifdef HAVE_STDLIB_H #include <stdlib.h> +#endif +#ifdef HAVE_UNISTD_H #include <unistd.h> +#endif #include <assert.h> #include <setjmp.h> #include <signal.h> +#ifdef HAVE_GETOPT_H +#include <getopt.h> +#endif #include "bfd.h" |