icinga2/contrib/check_random.c

11 lines
132 B
C
Raw Normal View History

2012-06-29 16:34:54 +02:00
#include <stdio.h>
int main(int argc, char **argv)
{
printf("check_random | test=1\n");
srand(getpid());
return rand() % 4;
}