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/miscutils/adjtimex.c

    r2725 r3232  
    1212 */
    1313
     14//usage:#define adjtimex_trivial_usage
     15//usage:       "[-q] [-o OFF] [-f FREQ] [-p TCONST] [-t TICK]"
     16//usage:#define adjtimex_full_usage "\n\n"
     17//usage:       "Read and optionally set system timebase parameters. See adjtimex(2)\n"
     18//usage:     "\n    -q  Quiet"
     19//usage:     "\n    -o OFF  Time offset, microseconds"
     20//usage:     "\n    -f FREQ Frequency adjust, integer kernel units (65536 is 1ppm)"
     21//usage:     "\n        (positive values make clock run faster)"
     22//usage:     "\n    -t TICK Microseconds per tick, usually 10000"
     23//usage:     "\n    -p TCONST"
     24
    1425#include "libbb.h"
    15 #include <sys/timex.h>
     26#ifdef __BIONIC__
     27# include <linux/timex.h>
     28#else
     29# include <sys/timex.h>
     30#endif
    1631
    1732static const uint16_t statlist_bit[] = {
Note: See TracChangeset for help on using the changeset viewer.