diff options
author | David Robillard <d@drobilla.net> | 2022-10-20 21:34:20 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-21 12:45:39 -0400 |
commit | d072adfbe40e15715e2065f1900f8d5a76491c5f (patch) | |
tree | 350f7c5c70e84d7a1d98a8e9389af4a4d3631cb1 /src/ring.c | |
parent | 60e86c7b2a05dab33fc66f4fa5b2954d79456cb6 (diff) | |
download | zix-d072adfbe40e15715e2065f1900f8d5a76491c5f.tar.gz zix-d072adfbe40e15715e2065f1900f8d5a76491c5f.tar.bz2 zix-d072adfbe40e15715e2065f1900f8d5a76491c5f.zip |
Hide errno utility functions
Diffstat (limited to 'src/ring.c')
-rw-r--r-- | src/ring.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,10 +2,13 @@ // SPDX-License-Identifier: ISC #include "zix/ring.h" -#include "zix/common.h" +#include "errno_status.h" #include "zix_config.h" +#include "zix/allocator.h" +#include "zix/common.h" + #if USE_MLOCK # include <sys/mman.h> #elif defined(_WIN32) @@ -21,6 +24,7 @@ # include <intrin.h> #endif +#include <stdint.h> #include <stdlib.h> #include <string.h> |