Changeset 2725 in MondoRescue for branches/2.2.9/mindi-busybox/libbb/xatonum.c


Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/libbb/xatonum.c

    r1765 r2725  
    55 * Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
    66 *
    7  * Licensed under GPLv2, see file LICENSE in this tarball for details.
     7 * Licensed under GPLv2, see file LICENSE in this source tree.
    88 */
    99
     
    6060/* A few special cases */
    6161
    62 int xatoi_u(const char *numstr)
     62int FAST_FUNC xatoi_positive(const char *numstr)
    6363{
    6464    return xatou_range(numstr, 0, INT_MAX);
    6565}
    6666
    67 uint16_t xatou16(const char *numstr)
     67uint16_t FAST_FUNC xatou16(const char *numstr)
    6868{
    6969    return xatou_range(numstr, 0, 0xffff);
Note: See TracChangeset for help on using the changeset viewer.