m2.hang-detector/src/test_mod.c
2006-03-17 17:04:59 +00:00

16 lines
201 B
C

/* vim: set sw=4 ts=4 si et: */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
void detector_init();
int main(){
detector_init();
while(1){
sleep(1);
printf("Loooooping \n");
}
}