diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-01-24 13:34:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-01-24 13:34:08 +0000 |
commit | c68ea386d13a08d89c2fcd1fd3f0dde91fd0ff27 (patch) | |
tree | e204334e7f37b9494ffe68f164befb61469f7901 | |
parent | a3d5bfcecec49bf197157bae4bee520e613c2efc (diff) | |
download | rtmux-c68ea386d13a08d89c2fcd1fd3f0dde91fd0ff27.tar.gz rtmux-c68ea386d13a08d89c2fcd1fd3f0dde91fd0ff27.tar.bz2 rtmux-c68ea386d13a08d89c2fcd1fd3f0dde91fd0ff27.zip |
pty.c needs compat.h.
-rw-r--r-- | pty.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -28,6 +28,8 @@ #include <termios.h> #include <unistd.h> +#include "compat.h" + int pty_open(int *); pid_t pty_fork(int, int *, char *, size_t, struct winsize *); |