This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 1f1240a0f46011c969f92c954b43537f04e59c04 Author: raiden00pl <[email protected]> AuthorDate: Sun Nov 2 12:04:51 2025 +0100 testing/drivers/fftest/fftest.c: fix compilation error fix compilation error: CC: vfs/fs_rmdir.c fftest.c: In function ‘fftest_main’: fftest.c:104:7: error: implicit declaration of function ‘ioctl’ [-Wimplicit-function-declaration] 104 | if (ioctl(fd, EVIOCGBIT, fffeatures) < 0) Signed-off-by: raiden00pl <[email protected]> --- testing/drivers/fftest/fftest.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/drivers/fftest/fftest.c b/testing/drivers/fftest/fftest.c index 67871195c..2b4c4dc81 100644 --- a/testing/drivers/fftest/fftest.c +++ b/testing/drivers/fftest/fftest.c @@ -30,6 +30,8 @@ #include <string.h> #include <unistd.h> +#include <sys/ioctl.h> + #include <nuttx/bits.h> #include <nuttx/fs/ioctl.h> #include <nuttx/input/ff.h>
