<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ttyrec: Use openpty from util.h

macOS ships openpty(3) in util.h, not libutil.h. Fix this by changing the
include.

Upstream-Status: Inappropriate [configuration]

--- ttyrec.c.orig	2020-06-17 01:25:44.000000000 +0200
+++ ttyrec.c	2020-06-17 01:25:55.000000000 +0200
@@ -71,7 +71,7 @@
 #define _(FOO) FOO
 
 #ifdef HAVE_openpty
-#include &lt;libutil.h&gt;
+#include &lt;util.h&gt;
 #endif
 
 #if defined(SVR4) &amp;&amp; !defined(CDEL)
</pre></body></html>