Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/coreutils/usleep.c

    r2725 r3232  
    99
    1010/* BB_AUDIT SUSv3 N/A -- Apparently a busybox extension. */
     11
     12//usage:#define usleep_trivial_usage
     13//usage:       "N"
     14//usage:#define usleep_full_usage "\n\n"
     15//usage:       "Pause for N microseconds"
     16//usage:
     17//usage:#define usleep_example_usage
     18//usage:       "$ usleep 1000000\n"
     19//usage:       "[pauses for 1 second]\n"
    1120
    1221#include "libbb.h"
     
    2130    }
    2231
    23     if (usleep(xatou(argv[1]))) {
    24         bb_perror_nomsg_and_die();
    25     }
     32    usleep(xatou(argv[1]));
    2633
    2734    return EXIT_SUCCESS;
Note: See TracChangeset for help on using the changeset viewer.