~hp/lv2lint

2790e454a71d5eccff0d53f25e1b26ae7cdecc68 — Hanspeter Portner 1 year, 26 days ago 21acf4f
use unsigned instead of useconds_t for musl
1 files changed, 1 insertions(+), 1 deletions(-)

M src/lv2lint_alloc.c
M src/lv2lint_alloc.c => src/lv2lint_alloc.c +1 -1
@@ 34,7 34,7 @@ static int   (*__sem_wait)(sem_t *) = NULL;
static int   (*__sem_timedwait)(sem_t *, const struct timespec *) = NULL;

static unsigned (*__sleep)(unsigned) = NULL;
static int   (*__usleep)(useconds_t) = NULL;
static int   (*__usleep)(unsigned) = NULL;
static int   (*__nanosleep)(const struct timespec *, struct timespec *) = NULL;
static int   (*__clock_nanosleep)(clockid_t, int, const struct timespec *,
																	struct timespec *) = NULL;