aboutsummaryrefslogtreecommitdiffstats
path: root/libcmap_block_list.c
blob: e0d3b9388ab32e4ce32b01d424aee941beb3ad58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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);