/*
 *	File:			timer.h
 *	Purpose:		Declaration of timer functions.
 *	Created:		29 Nov 91
 *	Last Modified:	06 Aug 93
 *	Comments:
 *	History:
 *		29 Nov 91/JVE	Created.
 *		06 Aug 93/JVE	Added sleep().
 */

int timer_start(int secs, void (* fn)());

void timer_stop(int id);

# if _AMIGA
void sleep(int seconds);
# endif
