mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
15 lines
164 B
C
15 lines
164 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int writeyes(void) {
|
||
|
puts("yes");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int writeno(const char *s) {
|
||
|
if(s)
|
||
|
printf("no (%s)\n", s);
|
||
|
else
|
||
|
puts("no");
|
||
|
return 1;
|
||
|
}
|