aboutsummaryrefslogtreecommitdiff
path: root/src/blocks/group.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/blocks/group.c')
-rw-r--r--src/blocks/group.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/blocks/group.c b/src/blocks/group.c
new file mode 100644
index 0000000..fb4457e
--- /dev/null
+++ b/src/blocks/group.c
@@ -0,0 +1,12 @@
+#include "scheme.h"
+
+const block_scheme_t block_group_scheme = {
+ .name = "group",
+ .block = {
+ .type = BLOCK_GROUP,
+ },
+ .size = 0,
+ .entries = NULL,
+ .verify = NULL,
+};
+