<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix implicit declaration of functions.
--- ttcp.c.orig	2021-05-11 19:48:58.000000000 -0500
+++ ttcp.c	2021-05-11 20:17:33.000000000 -0500
@@ -45,6 +45,8 @@
 /* #define SYSV */	/* required on SGI IRIX releases before 3.3 */
 
 #include &lt;stdio.h&gt;
+#include &lt;stdlib.h&gt;
+#include &lt;string.h&gt;
 #include &lt;signal.h&gt;
 #include &lt;ctype.h&gt;
 #include &lt;errno.h&gt;
@@ -55,6 +57,7 @@
 #include &lt;arpa/inet.h&gt;
 #include &lt;netdb.h&gt;
 #include &lt;sys/time.h&gt;		/* struct timeval */
+#include &lt;unistd.h&gt;
 
 #if defined(SYSV)
 #include &lt;sys/times.h&gt;
</pre></body></html>