Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
#include 
3
#include 
4
#include 
5
 
6
unsigned int sleep(unsigned int _seconds)
7
{
8
 for(;_seconds;_seconds--) __menuet__delay100(100);
9
 return _seconds;
10
}