Add unused third arg for the benefit of Valgrind.
diff --git a/Python/fileutils.c b/Python/fileutils.c
index eecbb3b..b504b15 100644
--- a/Python/fileutils.c
+++ b/Python/fileutils.c
@@ -675,7 +675,7 @@
         request = FIONCLEX;
     else
         request = FIOCLEX;
-    err = ioctl(fd, request);
+    err = ioctl(fd, request, NULL);
     if (err) {
         if (raise)
             PyErr_SetFromErrno(PyExc_OSError);