blob: 4903e47836d112b15fcba87f52171d46f5f2b78e [file] [log] [blame]
Denis Vlasenko8023d7d2006-11-24 15:06:28 +00001/*
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 Vlasenko2ea630f2006-12-10 02:52:19 +000010#include <features.h>
Denis Vlasenko8023d7d2006-11-24 15:06:28 +000011#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? */
16unsigned long long bb_makedev(unsigned int major, unsigned int minor)
17{
18 return makedev(major, minor);
19}
20#endif