Fix alsa-utils building error on NetBSD

The following errors occur at least on NetBSD 9.2 amd64 when building
alsa-utils:
include/alsa/output.h:75:66: error: unknown type name 'va_list'; did you mean '__va_list'?
include/alsa/error.h:80:25: error: unknown type name 'va_list'; did you mean '__va_list'?
This commit is contained in:
Frédéric Fauberteau 2021-08-10 22:13:06 +02:00
parent 23a191a82c
commit 551efe9feb
2 changed files with 4 additions and 0 deletions

View file

@ -32,6 +32,8 @@
extern "C" { extern "C" {
#endif #endif
#include <stdarg.h>
/** /**
* \defgroup Error Error handling * \defgroup Error Error handling
* Error handling macros and functions. * Error handling macros and functions.

View file

@ -32,6 +32,8 @@
extern "C" { extern "C" {
#endif #endif
#include <stdarg.h>
/** /**
* \defgroup Output Output Interface * \defgroup Output Output Interface
* *