]> git.alsa-project.org Git - alsa-lib.git/commitdiff
type_compat: Add missing __s64 and __u64 definitions for non-Linux
authorTakashi Iwai <tiwai@suse.de>
Fri, 20 Dec 2019 15:12:50 +0000 (16:12 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 20 Dec 2019 15:43:50 +0000 (16:43 +0100)
Just for the case without Linux-compatible definitions.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
include/sound/type_compat.h

index d4790c1f0e649e60a49f900cb9f0d95a2f59f4f8..5b765f447e2ef40cf05db6674b26c7c10bff404f 100644 (file)
@@ -9,9 +9,11 @@
 typedef uint8_t __u8;
 typedef uint16_t __u16;
 typedef uint32_t __u32;
+typedef uint64_t __u64;
 typedef int8_t __s8;
 typedef int16_t __s16;
 typedef int32_t __s32;
+typedef int64_t __s64;
 
 #include <endian.h>
 #include <byteswap.h>