Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/sleep/sleep.c

    r1d6dd2a rf300523  
    3131#include <stdio.h>
    3232#include <stdlib.h>
    33 #include <str.h>
    3433#include "config.h"
    3534#include "util.h"
     
    6362 * @return EOK if conversion was successful.
    6463 */
    65 static errno_t decimal_to_useconds(const char *nptr, useconds_t *result)
     64static int decimal_to_useconds(const char *nptr, useconds_t *result)
    6665{
    67         errno_t ret;
     66        int ret;
    6867        uint64_t whole_seconds;
    6968        uint64_t frac_seconds;
     
    113112int cmd_sleep(char **argv)
    114113{
    115         errno_t ret;
     114        int ret;
    116115        unsigned int argc;
    117116        useconds_t duration = 0;
Note: See TracChangeset for help on using the changeset viewer.