Skip to content

Commit

Permalink
path max fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vampirefrog committed Nov 15, 2024
1 parent 3746749 commit ee94f68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mdx2midi.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
#ifdef __linux__
#include <linux/limits.h>
#endif
#ifdef __APPLE__
#include <sys/syslimits.h>
#endif
#include <errno.h>
#include "cmdline.h"
#include "mdx.h"
Expand Down
3 changes: 3 additions & 0 deletions mdx2pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#ifdef __linux__
#include <linux/limits.h>
#endif
#ifdef __APPLE__
#include <sys/syslimits.h>
#endif
#include <sndfile.h>

#include "cmdline.h"
Expand Down
3 changes: 3 additions & 0 deletions mml2mdx.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#ifdef __linux__
#include <linux/limits.h>
#endif
#ifdef __APPLE__
#include <sys/syslimits.h>
#endif
#include "mdx_compiler.h"
#include "cmdline.h"
#include "tools.h"
Expand Down

0 comments on commit ee94f68

Please sign in to comment.