testers: add missing #include <unistd.h> (#12862)

FreeBSD clang needs the header to be included for read(), write(),
pipe(), close(), etc.
This commit is contained in:
Hiroki Tagato 2026-01-06 00:42:35 +09:00 committed by GitHub
parent a3c8533d74
commit 7d8f57083e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,7 @@
#include <sys/poll.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <unistd.h>
#include <print>
#include <format>
#include <string>