- Clean up broken includes in pty.c
diff --git a/pty.c b/pty.c
index f7ef19c..06b43bb 100644
--- a/pty.c
+++ b/pty.c
@@ -14,16 +14,15 @@
  */
 
 #include "includes.h"
-RCSID("$Id: pty.c,v 1.9 1999/12/13 23:47:16 damien Exp $");
+RCSID("$Id: pty.c,v 1.10 1999/12/13 23:54:47 damien Exp $");
 
-#include <util.h>
+#ifdef HAVE_UTIL_H
+# include <util.h>
+#endif /* HAVE_UTIL_H */
+
 #include "pty.h"
 #include "ssh.h"
 
-#ifdef HAVE_DEV_PTMX
-#include <sys/stropts.h>
-#endif /* HAVE_DEV_PTMX */
-
 /* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
 #if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY)
 #undef HAVE_DEV_PTMX