fix FAST_FUNC fallout
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
*/
|
||||
|
||||
/* We do not include libbb.h - #define makedev() is there! */
|
||||
#include "platform.h"
|
||||
#include <features.h>
|
||||
#include <sys/sysmacros.h>
|
||||
|
||||
@@ -15,8 +16,8 @@
|
||||
/* uclibc people please check - do we need "&& !__UCLIBC__" above? */
|
||||
|
||||
/* suppress gcc "no previous prototype" warning */
|
||||
unsigned long long bb_makedev(unsigned int major, unsigned int minor);
|
||||
unsigned long long bb_makedev(unsigned int major, unsigned int minor)
|
||||
unsigned long long FAST_FUNC bb_makedev(unsigned int major, unsigned int minor);
|
||||
unsigned long long FAST_FUNC bb_makedev(unsigned int major, unsigned int minor)
|
||||
{
|
||||
return makedev(major, minor);
|
||||
}
|
||||
|
Reference in New Issue
Block a user