aboutsummaryrefslogtreecommitdiff
path: root/src/lullaby.h
blob: 9474a082cf7460dc5388102bf789e2fe25f1955f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LULLABY_H
#define LULLABY_H
#pragma once
#include "config.h"

extern int _print_errors;

static struct config lullaby_config[] = {
  {.name = "print_errors", .type = c_int, .value = {.c_int = &_print_errors}},
  {.type = c_none}
};

#endif