diff options
author | June McEnroe <programble@gmail.com> | 2018-02-22 11:51:59 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-02-22 11:51:59 -0500 |
commit | 017265aab09ddd1e2965db33b7c12c1f2ae42295 (patch) | |
tree | 935e2cea84e26ea56ece6525a8dcf0523b1ad84d | |
parent | Send ^L to PTY every 1 MiB in broadcast (diff) | |
download | stream-017265aab09ddd1e2965db33b7c12c1f2ae42295.tar.gz stream-017265aab09ddd1e2965db33b7c12c1f2ae42295.zip |
Add sys/types.h include
-rw-r--r-- | view.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/view.c b/view.c index 732aeca..be69fef 100644 --- a/view.c +++ b/view.c @@ -14,6 +14,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <sys/types.h> + #include <err.h> #include <fcntl.h> #include <poll.h> |