Skip to content

Commit

Permalink
Fix building on musl
Browse files Browse the repository at this point in the history
Use `unistd.h` instead of `sys/unistd.h`
  • Loading branch information
neersighted authored Mar 31, 2017
1 parent aed5104 commit 5c571b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include <sys/types.h>
#include <sys/stat.h>
#include <sys/unistd.h>
#include <unistd.h>

static int decode_interrupt_cb(void *ctx) {
struct GrooveFilePrivate *f = (struct GrooveFilePrivate *)ctx;
Expand Down

0 comments on commit 5c571b3

Please sign in to comment.