Merge pull request #4278 from rwsalie/master

add openbsd support
This commit is contained in:
Alexis Rouillard
2025-08-08 08:43:52 +02:00
committed by GitHub
6 changed files with 50 additions and 9 deletions

View File

@ -2,7 +2,13 @@
#include <poll.h>
#include <spdlog/spdlog.h>
#ifndef __OpenBSD__
#include <sys/inotify.h>
#else
#include <sys/event.h>
#include <sys/time.h>
#include <sys/types.h>
#endif
#include <filesystem>
#include <fstream>