diff --git a/src/variable.c b/src/variable.c index a80eda8..87aefcc 100644 --- a/src/variable.c +++ b/src/variable.c @@ -652,6 +652,14 @@ VariableType variable_get_type(Variable * variable) } +/* variable_set_from */ +int variable_set_from(Variable * variable, VariableType type, void * value) +{ + /* FIXME implement */ + return -1; +} + + /* useful */ /* variable_serialize */ int variable_serialize(Variable * variable, Buffer * buffer, int type)