Subversion Repositories Kolibri OS

Rev

Rev 4016 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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