1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2025-10-17 07:57:43 +02:00

Merge pull request #116 from julianaito/obsd_statdoth

OpenBSD: requires <sys/stat.h> for stat(2)
This commit is contained in:
Sirius Bakke 2020-12-30 00:26:56 +01:00 committed by GitHub
commit 6aa6f74804
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@
#include "version.h"
#include "fwbuilder/Constants.h"
#if defined (__linux__) || defined (__FreeBSD_kernel__) || defined (__MINGW64__) || defined (__MINGW32__) || defined (__APPLE__)
#if defined (__linux__) || defined (__FreeBSD_kernel__) || defined (__OpenBSD__) || defined (__MINGW64__) || defined (__MINGW32__) || defined (__APPLE__)
# include <sys/stat.h>
#endif