Changeset 2725 in MondoRescue for branches/2.2.9/mindi-busybox/libbb/makedev.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/makedev.c

    r1765 r2725  
    22 * Utility routines.
    33 *
    4  * Copyright (C) 2006 Denis Vlasenko
     4 * Copyright (C) 2006 Denys Vlasenko
    55 *
    6  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
     6 * Licensed under GPLv2, see file LICENSE in this source tree.
    77 */
    88
    99/* We do not include libbb.h - #define makedev() is there! */
     10#include "platform.h"
    1011#include <features.h>
    1112#include <sys/sysmacros.h>
     
    1617
    1718/* suppress gcc "no previous prototype" warning */
    18 unsigned long long bb_makedev(unsigned int major, unsigned int minor);
    19 unsigned long long bb_makedev(unsigned int major, unsigned int minor)
     19unsigned long long FAST_FUNC bb_makedev(unsigned int major, unsigned int minor);
     20unsigned long long FAST_FUNC bb_makedev(unsigned int major, unsigned int minor)
    2021{
    2122    return makedev(major, minor);
Note: See TracChangeset for help on using the changeset viewer.