From: alaviss Date: Wed, 5 Jul 2017 17:39:13 +0000 (+0700) Subject: Musl libc fixes X-Git-Tag: zfs-0.7.0-rc5~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=478e3ecf8bc98687a336a64214c0e5e122454f52;p=zfs Musl libc fixes Musl libc's doesn't include , which cause `va_start` and `va_end` end up being undefined symbols. Reviewed-by: Brian Behlendorf Reviewed-by: George Melikov Signed-off-by: Leorize Closes #6310 --- diff --git a/lib/libspl/include/assert.h b/lib/libspl/include/assert.h index 6237d6bcf..b53942094 100644 --- a/lib/libspl/include/assert.h +++ b/lib/libspl/include/assert.h @@ -31,6 +31,7 @@ #include #include +#include static inline int libspl_assert(const char *buf, const char *file, const char *func, int line)