]> granicus.if.org Git - graphviz/commitdiff
lefty: make a unix #include of unistd.h unconditional
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 14 Apr 2022 02:57:15 +0000 (19:57 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 24 Apr 2022 15:52:41 +0000 (08:52 -0700)
On unices, it is fine to assume the existence of unistd.h.

Gitlab: #2204

cmd/lefty/os/unix/io.c

index afd3bbd8403ed804377720aeb849aa601c0b9a83..3b39a147f6677293d55e6737c5737950a90ffa8c 100644 (file)
@@ -35,6 +35,7 @@
 #define FORK fork
 #endif
 #include <netdb.h>
+#include <unistd.h>
 
 /* AI_NUMERICSERV as a value for the `ai_flags' member
  * of `struct addrinfo' of header <netdb.h> has only
 #define AI_NUMERICSERV 0
 #endif
 
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-
 io_t *iop;
 int ion;