blob: 7464f5c634f598283f4de7fa17d236b7b83848f1 (
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_script list[] = {
{"Phony script", NULL, 0}
};
const struct libcmap_script *const libcmap_script_list = list;
const size_t libcmap_script_list_size = sizeof(list) / sizeof(*list);
|