diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-12-04 21:04:41 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-12-04 22:09:42 -0500 |
commit | 2c29882f833f634d776b19fa15a1f1bad70bf447 (patch) | |
tree | 40925a6a8590fa8e8389caee67e97004f0a040dc /sim/common/sim-abort.c | |
parent | 20a8e078cc573f85f7262f7b87be3cf8e8a6424f (diff) | |
download | binutils-2c29882f833f634d776b19fa15a1f1bad70bf447.zip binutils-2c29882f833f634d776b19fa15a1f1bad70bf447.tar.gz binutils-2c29882f833f634d776b19fa15a1f1bad70bf447.tar.bz2 |
sim: include stdarg.h when used
Avoid implicit include deps with this to help untangle sim headers
so we can get rid of arch-specific sim-main.h.
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 06df127..d30b9a4 100644 --- a/sim/common/sim-abort.c +++ b/sim/common/sim-abort.c @@ -20,6 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* This must come before any other includes. */ #include "defs.h" +#include <stdarg.h> #include <stdio.h> #include <stdlib.h> |