diff --git a/panda/src/mpg123/audio.c b/panda/src/mpg123/audio.c index e60c46ef1a..7ac6e1fe94 100644 --- a/panda/src/mpg123/audio.c +++ b/panda/src/mpg123/audio.c @@ -1,5 +1,7 @@ #include "mpg123.h" +#include +#include void audio_info_struct_init(struct audio_info_struct *ai) { diff --git a/panda/src/mpg123/common.c b/panda/src/mpg123/common.c index dfa382c853..e5cee212b4 100644 --- a/panda/src/mpg123/common.c +++ b/panda/src/mpg123/common.c @@ -11,6 +11,7 @@ #endif /* WIN32 */ #include +#include #ifdef READ_MMAP #include diff --git a/panda/src/mpg123/readers.c b/panda/src/mpg123/readers.c index 085283960f..54b71d73a1 100644 --- a/panda/src/mpg123/readers.c +++ b/panda/src/mpg123/readers.c @@ -3,7 +3,7 @@ #include #include #include - +#include #include "mpg123.h" #include "mpgbuffer.h" #include "common.h" diff --git a/panda/src/mpg123/xfermem.c b/panda/src/mpg123/xfermem.c index 4cb6c059f3..3f96dc88a3 100644 --- a/panda/src/mpg123/xfermem.c +++ b/panda/src/mpg123/xfermem.c @@ -20,6 +20,7 @@ #include #include #include +#include #ifdef AIX #include @@ -244,19 +245,19 @@ extern int errno; void xfermem_init (txfermem **xf, int bufsize, int msize, int skipbuf) { - return 0; + return; } void xfermem_done (txfermem *xf) { - return 0; + return; } void xfermem_init_writer (txfermem *xf) { - return 0; + return; } void xfermem_init_reader (txfermem *xf) { - return 0; + return; } int xfermem_get_freespace (txfermem *xf) {