From f311f55e4db26ebc700938c582a172fd469ca001 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Thu, 22 Apr 2021 18:03:36 +0000 Subject: [PATCH] chore: Add missing headers to sockclient --- runtime/tests/sockclient/client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/tests/sockclient/client.c b/runtime/tests/sockclient/client.c index 5ba32df..21230f0 100644 --- a/runtime/tests/sockclient/client.c +++ b/runtime/tests/sockclient/client.c @@ -1,10 +1,12 @@ /* code from http://www.cs.rpi.edu/~moorthy/Courses/os98/Pgms/socket.html */ #include +#include #include #include #include #include #include +#include void error(char *msg)