source: MondoRescue/branches/2.2.9/mindi-busybox/libbb/makedev.c@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • 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
  • Property svn:eol-style set to native
File size: 683 bytes
Line 
1/*
2 * Utility routines.
3 *
4 * Copyright (C) 2006 Denys Vlasenko
5 *
6 * Licensed under GPLv2, see file LICENSE in this source tree.
7 */
8
9/* We do not include libbb.h - #define makedev() is there! */
10#include "platform.h"
11#include <features.h>
12#include <sys/sysmacros.h>
13
14#ifdef __GLIBC__
15/* At least glibc has horrendously large inline for this, so wrap it */
16/* uclibc people please check - do we need "&& !__UCLIBC__" above? */
17
18/* suppress gcc "no previous prototype" warning */
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)
21{
22 return makedev(major, minor);
23}
24#endif
Note: See TracBrowser for help on using the repository browser.