#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>

void SNOOZE( int t )
{
    Sleep(t);  // Delay for 20 second
}
