diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2026-03-02 14:31:27 +0200 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2026-03-02 14:31:27 +0200 |
| commit | de374325783da5f55e59fd674372af4c4e837790 (patch) | |
| tree | f628cbff82c260cca24a0df1b724ca7a004e00c3 /dfm.c | |
| parent | 46af36d62ee704e95653ac8bf937f55c199a7854 (diff) | |
platform/bsd.h: initial BSD platform support.
Untested... based on how other file managers do it.
Related: #3
Diffstat (limited to 'dfm.c')
| -rw-r--r-- | dfm.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -66,8 +66,9 @@ #if defined(__linux__) #include "platform/linux.h" -#elif defined(__APPLE__) -#include "platform/apple.h" +#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) ||\ + defined(__OpenBSD__) || defined(__DragonFly__) +#include "platform/bsd.h" #else #include "platform/posix.h" #endif |