Skip to content

Commit

Permalink
Added sys/types as need by newer GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoreno committed Oct 17, 2024
1 parent 1741595 commit 3ef6f42
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/local_rawmidi_peer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

#include "local_rawmidi_peer.hpp"
#include "json.hpp"
#include "mididata.hpp"
#include "midirouter.hpp"

#include <fcntl.h>
#include <rtpmidid/logger.hpp>
#include <rtpmidid/packet.hpp>
#include <rtpmidid/poller.hpp>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

#include "json.hpp"
#include "local_rawmidi_peer.hpp"
#include "mididata.hpp"
#include "midirouter.hpp"

using namespace rtpmididns;

local_rawmidi_peer_t::local_rawmidi_peer_t(const std::string &name_,
Expand Down
2 changes: 2 additions & 0 deletions src/midi_normalizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

#include <sys/types.h>

#include "midi_normalizer.hpp"
#include "rtpmidid/logger.hpp"
#include "rtpmidid/packet.hpp"
Expand Down

0 comments on commit 3ef6f42

Please sign in to comment.