blob: 18fcaaa34d2f97ae701bc1a4fdd923f9d48b22e5 [file] [log] [blame]
#pragma once
/*
* Fall back to Linux's definitions of makedev and major are needed.
* The search_sysfs_block() function is highly unlikely to work on
* non-Linux systems anyway.
*/
#ifndef makedev
#define makedev(maj, min) (((maj) << 8) + (min))
#endif