1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-24 18:07:20 +00:00

initial tree

This commit is contained in:
Helmut Grohne 2008-06-21 11:33:06 +00:00 committed by Steve Schnepp
parent 0cde2ae787
commit 209937078b
15 changed files with 737 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#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;
}