diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-01-09 02:43:54 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-01-09 02:45:14 -0500 |
commit | ce0be4070f04ff8295a3cb58e352f759ce8ae70d (patch) | |
tree | 89d2cda550d5a192fe71ddbf5c4bd756836fcc11 /sim/common/sim-abort.c | |
parent | ba9e922fa0dfbd7957ef939da3a6b0dbbbaa03cd (diff) | |
download | binutils-ce0be4070f04ff8295a3cb58e352f759ce8ae70d.zip binutils-ce0be4070f04ff8295a3cb58e352f759ce8ae70d.tar.gz binutils-ce0be4070f04ff8295a3cb58e352f759ce8ae70d.tar.bz2 |
sim: common: add missing stdlib.h for abort()
Diffstat (limited to 'sim/common/sim-abort.c')
-rw-r--r-- | sim/common/sim-abort.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sim/common/sim-abort.c b/sim/common/sim-abort.c index ef4fea1..bf05504 100644 --- a/sim/common/sim-abort.c +++ b/sim/common/sim-abort.c @@ -18,6 +18,7 @@ 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 <stdio.h> +#include <stdlib.h> #include "sim-main.h" #include "sim-assert.h" |