diff options
author | David Robillard <d@drobilla.net> | 2022-07-07 13:06:42 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-17 13:50:40 -0400 |
commit | e09a2bccd90d3666f2dd748a5ab6d5f105dd358c (patch) | |
tree | 8abcee618706044f3d65a6f23b43f052a1b0954a /src | |
parent | 499d60e27ef89b0fa7f627a153eedb2a36ae4efa (diff) | |
download | jalv-e09a2bccd90d3666f2dd748a5ab6d5f105dd358c.tar.gz jalv-e09a2bccd90d3666f2dd748a5ab6d5f105dd358c.tar.bz2 jalv-e09a2bccd90d3666f2dd748a5ab6d5f105dd358c.zip |
Add missing include
Diffstat (limited to 'src')
-rw-r--r-- | src/portaudio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/portaudio.c b/src/portaudio.c index fb8aec2..bc687b1 100644 --- a/src/portaudio.c +++ b/src/portaudio.c @@ -9,6 +9,7 @@ #include <math.h> #include <portaudio.h> #include <stdio.h> +#include <stdlib.h> struct JalvBackendImpl { PaStream* stream; |