From 955b1806c73db9aeaf4d5acef40e2e606ccdf981 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 16 Jan 2015 19:15:52 +0100 Subject: [PATCH] unix: fix implicit declaration compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include explicitly to get the definition of strncpy(). Refs https://github.com/libuv/libuv/issues/138. PR-URL: https://github.com/libuv/libuv/pull/150 Reviewed-By: Saúl Ibarra Corretgé --- src/unix/darwin-proctitle.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unix/darwin-proctitle.c b/src/unix/darwin-proctitle.c index b7267caa..cbb7ea42 100644 --- a/src/unix/darwin-proctitle.c +++ b/src/unix/darwin-proctitle.c @@ -21,6 +21,7 @@ #include #include #include +#include #include