blob: 81d663909afe22ff46fddd6fa343313454bd51b2 (
plain)
1
2
3
4
5
6
7
8
|
// SPDX-License-Identifier: GPL-3.0-or-later
#include "rrdfunctions-progress.h"
int rrdhost_function_progress(BUFFER *wb, const char *function __maybe_unused) {
return progress_function_result(wb, rrdhost_hostname(localhost));
}
|