daemon: Remove uc_get_rate_by_name_vl().

The implementation has already been removed.
This commit is contained in:
Florian Forster
2020-08-10 09:46:01 +02:00
parent a20acb77d3
commit 630b948391
2 changed files with 0 additions and 7 deletions

View File

@@ -42,8 +42,6 @@ int uc_init(void);
int uc_check_timeout(void);
int uc_update(metric_family_t const *fam);
int uc_get_rate_by_name_vl(const char *name, gauge_t **ret_values,
size_t *ret_values_num);
gauge_t *uc_get_rate_vl(const data_set_t *ds, const value_list_t *vl);
int uc_get_value_by_name_vl(const char *name, value_t **ret_values,
size_t *ret_values_num);

View File

@@ -44,11 +44,6 @@ int uc_get_rate_by_name(const char *name, gauge_t *ret_value) {
return ENOTSUP;
}
int uc_get_rate_by_name_vl(const char *name, gauge_t **ret_values,
size_t *ret_values_num) {
return ENOTSUP;
}
int uc_get_names(char ***ret_names, cdtime_t **ret_times, size_t *ret_number) {
return ENOTSUP;
}