Home | History | Annotate | Download | only in sys
      1 
      2 #pragma once
      3 
      4 /*
      5  * Fall back to Linux's definitions of makedev and major are needed.
      6  * The search_sysfs_block() function is highly unlikely to work on
      7  * non-Linux systems anyway.
      8  */
      9 #ifndef makedev
     10 #define makedev(maj, min) (((maj) << 8) + (min))
     11 #endif