sim: include stdint.h when needed

Avoid implicit include deps with this to help untangle sim headers
so we can get rid of arch-specific sim-main.h.
This commit is contained in:
Mike Frysinger
2021-12-04 21:06:54 -05:00
parent 2c29882f83
commit 33bbd5e8dd
3 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#include <limits.h>
#include <signal.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -27,6 +27,7 @@
#include <fcntl.h>
#endif
#include <stdarg.h>
#include <stdint.h>
#include <stdlib.h>
#if HAVE_UNISTD_H
#include <unistd.h>

View File

@ -24,6 +24,7 @@
#define SIM_IO_H
#include <stdarg.h>
#include <stdint.h>
#include <sys/stat.h>
#include <sys/types.h>