From 26294702225028addbd3e3f1945fa841b4642724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Fri, 16 Sep 2022 09:41:55 +0000 Subject: [PATCH] src: remove from node_os.cc The file does not use sysconf() and its use of gethostname() has been removed, so including appears to be unnecessary. --- src/node_os.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_os.cc b/src/node_os.cc index 4a3b9f608d702f..451ff08cc3ff39 100644 --- a/src/node_os.cc +++ b/src/node_os.cc @@ -28,7 +28,6 @@ #endif // __MINGW32__ #ifdef __POSIX__ -# include // gethostname, sysconf # include // PATH_MAX on Solaris. #endif // __POSIX__