Added check_random plugin.

This commit is contained in:
Gunnar Beutner 2012-06-29 16:34:54 +02:00
parent 80bec5fcd4
commit 6c153d8e8e
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#include <stdio.h>
int main(int argc, char **argv)
{
printf("check_random | test=1\n");
srand(getpid());
return rand() % 4;
}