diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index eb5a27f53d..917b52559f 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -13,7 +13,7 @@
User's Manual
by
Gregory Nutt
-
Last Updated: November 5, 2014
+Last Updated: November 29, 2014
@@ -7733,7 +7733,11 @@ interface of the same name.#include <sys/ioctl.h> - int ioctl(int fd, int req, unsigned long arg); + #ifdef CONFIG_LIBC_IOCTL_VARIADIC + int ioctl(int fd, int req, ...); + #else + int ioctl(int fd, int req, unsigned long arg); + #endif