Subversion Repositories Kolibri OS

Rev

Rev 4015 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. int cmd_sleep(char param[])
  3. {
  4. int delay;
  5.  
  6. if (!strlen(param))
  7.         return FALSE;
  8.  
  9. delay = _atoi(param);
  10. kol_sleep((unsigned)delay);
  11. return TRUE;
  12. }
  13.