]> andersk Git - gssapi-openssh.git/blobdiff - openssh/openbsd-compat/bsd-openpty.c
Import of OpenSSH 4.4p1
[gssapi-openssh.git] / openssh / openbsd-compat / bsd-openpty.c
index 8eb62b7a8b45923ded4206453922cb4aeb971aa0..9777eb556d2d80c96bd2b51bf18fc9551679aa08 100644 (file)
 #include "includes.h"
 #if !defined(HAVE_OPENPTY)
 
+#include <sys/types.h>
+
+#include <stdlib.h>
+
+#ifdef HAVE_SYS_STAT_H
+# include <sys/stat.h>
+#endif
+#ifdef HAVE_SYS_IOCTL_H
+# include <sys/ioctl.h>
+#endif
+
+#ifdef HAVE_FCNTL_H
+# include <fcntl.h>
+#endif
+
 #ifdef HAVE_UTIL_H
 # include <util.h>
 #endif /* HAVE_UTIL_H */
 # include <sys/stropts.h>
 #endif
 
+#include <signal.h>
+#include <string.h>
+#include <unistd.h>
+
 #ifndef O_NOCTTY
 #define O_NOCTTY 0
 #endif
This page took 0.033312 seconds and 4 git commands to generate.