diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-16 04:35:48 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-16 04:35:48 -0500 |
commit | 4cd7de783bc72cc1f44fe989e7a0c7feb10532d5 (patch) | |
tree | 39e49c04f886bece9add9d5b076fc269170e4afa /sim/common/dv-pal.c | |
parent | e9bf6a4a20798cd495b2833112482ebc55bc5982 (diff) | |
download | gdb-4cd7de783bc72cc1f44fe989e7a0c7feb10532d5.zip gdb-4cd7de783bc72cc1f44fe989e7a0c7feb10532d5.tar.gz gdb-4cd7de783bc72cc1f44fe989e7a0c7feb10532d5.tar.bz2 |
sim: formally assume unistd.h always exists (via gnulib)
We have many uses of unistd.h that are unprotected by HAVE_UNISTD_H,
so this is more formalizing the reality that we require this header.
Since we switched to gnulib, it guarantees that a unistd.h exists
for us to include, so we're doubly OK.
Diffstat (limited to 'sim/common/dv-pal.c')
-rw-r--r-- | sim/common/dv-pal.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sim/common/dv-pal.c b/sim/common/dv-pal.c index 56692c1..25f8c68 100644 --- a/sim/common/dv-pal.c +++ b/sim/common/dv-pal.c @@ -24,9 +24,7 @@ #include <stdlib.h> #include <string.h> -#ifdef HAVE_UNISTD_H #include <unistd.h> -#endif #include "sim-main.h" #include "hw-main.h" |