mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
cbfa6b4578
Like the mainline plugins do.
15 lines
317 B
C
15 lines
317 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#define PROC_STAT "/proc/stat"
|
|
|
|
int writeyes(void);
|
|
int writeno(const char *);
|
|
int getenvint(const char *, int);
|
|
const char *getenv_composed(const char *, const char *);
|
|
void print_warning(const char *);
|
|
void print_critical(const char *);
|
|
void print_warncrit(const char *);
|
|
|
|
#endif
|