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
1 changed files with 1 additions and 1 deletions

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