xref: /freebsd/stand/libsa/zfs/spl/sys/blake3.h (revision 05427f4639bcf2703329a9be9d25ec09bb782742)
1 /*
2  * Copyright 2022, Netflix, Inc
3  *
4  * SPDX-License-Identifier: BSD-2-Clause
5  */
6 
7 #pragma once
8 
9 /*
10  * Gross and ugly hack to cope with upstream's sys/blake3.h not being standalone
11  * safe.
12  */
13 #define _KERNEL
14 
15 #include_next <sys/blake3.h>
16 
17 #undef _KERNEL
18