diff options
Diffstat (limited to 'zap/include-private')
-rw-r--r-- | zap/include-private/zap/priv.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/zap/include-private/zap/priv.h b/zap/include-private/zap/priv.h new file mode 100644 index 0000000..c47d802 --- /dev/null +++ b/zap/include-private/zap/priv.h @@ -0,0 +1,20 @@ +/* + Copyright 2022 Gabriel Jensen. + This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. + If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +*/ + +#if !defined(zap_priv_hdr_priv) +#define zap_priv_hdr_priv + +#if !defined(__amd64__) +#error zapq only supports AMD64! +#endif + +#if !defined(__ASSEMBLER__) +#include <zap/bs.h> + +#include <sus/extra.h> +#endif + +#endif |