#include "builtins.h" #include "blocktype.h" static const char *outs[] = { "V" }; static BLOCKPARAM params[] = { { .name = "Value", .type = PAR_SIGNAL } }; BLOCKTYPE block_constant = { .name = "Constant", .n_in = 0, .ins = 0, .n_out = 1, .outs = &outs[0], .n_param = 1, .params = ¶ms[0] };