diff options
author | Daniel Mentz <danielmentz@google.com> | 2019-03-29 15:48:54 -0700 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-04-02 09:27:21 +0200 |
commit | b5bdbb6ccd1117896bf4fba6bff75336ca423e8c (patch) | |
tree | 7b54d3c7bec792c2de31d12fdf58595dea07d02a /include/uapi | |
parent | ea5c7eba216e832906e594799b8670f1954a588c (diff) | |
download | linux-b5bdbb6ccd1117896bf4fba6bff75336ca423e8c.tar.bz2 |
ALSA: uapi: #include <time.h> in asound.h
The uapi header asound.h defines types based on struct timespec. We need
to #include <time.h> to get access to the definition of this struct.
Previously, we encountered the following error message when building
applications with a clang/bionic toolchain:
kernel-headers/sound/asound.h:350:19: error: field has incomplete type 'struct timespec'
struct timespec trigger_tstamp;
^
The absence of the time.h #include statement does not cause build errors
with glibc, because its version of stdlib.h indirectly includes time.h.
Signed-off-by: Daniel Mentz <danielmentz@google.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/sound/asound.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/sound/asound.h b/include/uapi/sound/asound.h index 404d4b9ffe76..df1153cea0b7 100644 --- a/include/uapi/sound/asound.h +++ b/include/uapi/sound/asound.h @@ -32,6 +32,7 @@ #ifndef __KERNEL__ #include <stdlib.h> +#include <time.h> #endif /* |