diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-08-01 15:59:04 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-08-01 16:02:26 -0400 |
commit | c03316834dcef8a3b7ebf489dbbb9409a7990eab (patch) | |
tree | 0bcdcecd61f152adb07aeeb336ff27fb9b9cabc1 | |
parent | 9bf0b2b169ead7f56e6d1313ff7e88441a78da58 (diff) | |
download | bfs-c03316834dcef8a3b7ebf489dbbb9409a7990eab.tar.xz |
bar: #include <unistd.h> for ioctl() on Illumos
-rw-r--r-- | src/bar.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -17,6 +17,7 @@ #include <string.h> #include <sys/ioctl.h> #include <termios.h> +#include <unistd.h> struct bfs_bar { int fd; |