diff options
Diffstat (limited to 'sim/common/nrun.c')
-rw-r--r-- | sim/common/nrun.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sim/common/nrun.c b/sim/common/nrun.c index a50ae06..8e92879 100644 --- a/sim/common/nrun.c +++ b/sim/common/nrun.c @@ -15,6 +15,16 @@ 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 <signal.h> + +/* For strsignal. */ +#ifdef HAVE_STRING_H +#include <string.h> +#else +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif +#endif + #include "sim-main.h" #include "bfd.h" |