Skip to content

Commit

Permalink
fix: sys/stat.h include added to persisted_key_pair_generic to fix fr…
Browse files Browse the repository at this point in the history
…eebsd 14.1
  • Loading branch information
braindigitalis committed Nov 7, 2024
1 parent ab0142b commit 2ecd32f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/dpp/dave/persisted_key_pair_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
#include <functional>
#include <iostream>
#ifdef _WIN32
#include <io.h>
#include <io.h>
#else
#include <unistd.h>
#include <unistd.h>
#include <sys/stat.h>
#endif
#include <fcntl.h>
#include <bytes/bytes.h>
Expand Down

0 comments on commit 2ecd32f

Please sign in to comment.