diff options
author | Jeff Law <jeffreyalaw@gmail.com> | 2023-12-22 20:48:21 -0700 |
---|---|---|
committer | Jeff Law <jeffreyalaw@gmail.com> | 2023-12-22 20:48:21 -0700 |
commit | 886eadb78e94d77cf8f3f401158247fa695cf95b (patch) | |
tree | 20211afb46192f895a90161a8b15d1e09656cb6a | |
parent | 9f3e8ba3b25e162a3c1f383a4c7a84b96fa81cd6 (diff) | |
download | newlib-886eadb78e94d77cf8f3f401158247fa695cf95b.zip newlib-886eadb78e94d77cf8f3f401158247fa695cf95b.tar.gz newlib-886eadb78e94d77cf8f3f401158247fa695cf95b.tar.bz2 |
Fix ft32 libgloss for c99/gcc-14
Just one missing header for this libgloss port.
-rw-r--r-- | libgloss/ft32/sim-inbyte.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libgloss/ft32/sim-inbyte.c b/libgloss/ft32/sim-inbyte.c index 9df0e1f..f56890d 100644 --- a/libgloss/ft32/sim-inbyte.c +++ b/libgloss/ft32/sim-inbyte.c @@ -13,6 +13,7 @@ * the new terms are clearly indicated on the first page of each file where * they apply. */ +#include <unistd.h> int inbyte () |