From c68ea386d13a08d89c2fcd1fd3f0dde91fd0ff27 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 24 Jan 2017 13:34:08 +0000 Subject: [PATCH] pty.c needs compat.h. --- pty.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pty.c b/pty.c index 6db623f9..df94623d 100644 --- a/pty.c +++ b/pty.c @@ -28,6 +28,8 @@ #include #include +#include "compat.h" + int pty_open(int *); pid_t pty_fork(int, int *, char *, size_t, struct winsize *);