From 28f3247dbb786a42f0460a7aa88d558056a68144 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 20 Dec 2025 06:49:30 +0100 Subject: First commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libcmap_block_list.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libcmap_block_list.c (limited to 'libcmap_block_list.c') diff --git a/libcmap_block_list.c b/libcmap_block_list.c new file mode 100644 index 0000000..e0d3b93 --- /dev/null +++ b/libcmap_block_list.c @@ -0,0 +1,11 @@ +/* See LICENSE file for copyright and license details. */ +#include "libcmap.h" + + +static const struct libcmap_block list[] = { + {"Phony block", {0, 0}} +}; + + +const struct libcmap_block *const libcmap_block_list = list; +const size_t libcmap_block_list_size = sizeof(list) / sizeof(*list); -- cgit v1.3.1