mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-03-26 07:57:57 -04:00
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:
parent
23a191a82c
commit
551efe9feb
2 changed files with 4 additions and 0 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,8 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \defgroup Output Output Interface
|
* \defgroup Output Output Interface
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue