Subversion Repositories Kolibri OS

Rev

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

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <unistd.h>
  3. #include <time.h>
  4. #include <menuet/os.h>
  5.  
  6. unsigned int sleep(unsigned int _seconds)
  7. {
  8.  for(;_seconds;_seconds--) __menuet__delay100(100);
  9.  return _seconds;
  10. }
  11.