Denis Vlasenko | 8023d7d | 2006-11-24 15:06:28 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Utility routines. |
| 3 | * |
| 4 | * Copyright (C) 2006 Denis Vlasenko |
| 5 | * |
| 6 | * Licensed under GPL version 2, see file LICENSE in this tarball for details. |
| 7 | */ |
| 8 | |
| 9 | /* We do not include libbb.h - #define makedev() is there! */ |
Denis Vlasenko | 2ea630f | 2006-12-10 02:52:19 +0000 | [diff] [blame] | 10 | #include <features.h> |
Denis Vlasenko | 8023d7d | 2006-11-24 15:06:28 +0000 | [diff] [blame] | 11 | #include <sys/sysmacros.h> |
| 12 | |
| 13 | #ifdef __GLIBC__ |
| 14 | /* At least glibc has horrendously large inline for this, so wrap it */ |
| 15 | /* uclibc people please check - do we need "&& !__UCLIBC__" above? */ |
Denis Vlasenko | 769d1e0 | 2007-01-22 23:04:27 +0000 | [diff] [blame] | 16 | |
| 17 | /* suppress gcc "no previous prototype" warning */ |
| 18 | unsigned long long bb_makedev(unsigned int major, unsigned int minor); |
Denis Vlasenko | 8023d7d | 2006-11-24 15:06:28 +0000 | [diff] [blame] | 19 | unsigned long long bb_makedev(unsigned int major, unsigned int minor) |
| 20 | { |
| 21 | return makedev(major, minor); |
| 22 | } |
| 23 | #endif |