* src/w32/compat/posixfcn.c (isatty): Avoid unused-parameter warnings.
(jobserver_pre_child): Ditto.
(jobserver_post_child): Ditto.
(jobserver_acquire): Ditto.
(fd_set_append): Ditto.
}
char *
-ttyname (int fd)
+ttyname (int fd UNUSED)
{
/* This "knows" that Make only asks about stdout and stderr. A more
sophisticated implementation should test whether FD is open for
{
}
-void jobserver_pre_child (int recursive)
+void jobserver_pre_child (int recursive UNUSED)
{
}
-void jobserver_post_child (int recursive)
+void jobserver_post_child (int recursive UNUSED)
{
}
/* Returns 1 if we got a token, or 0 if a child has completed.
The Windows implementation doesn't support load detection. */
unsigned int
-jobserver_acquire (int timeout)
+jobserver_acquire (int timeout UNUSED)
{
HANDLE *handles;
DWORD dwHandleCount;
}
void
-fd_set_append (int fd)
+fd_set_append (int fd UNUSED)
{}