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