1
0
mirror of https://github.com/fluencelabs/musl synced 2025-05-01 10:02:17 +00:00

9 lines
189 B
C
Raw Normal View History

#ifndef _SYS_SYSMACROS_H
#define _SYS_SYSMACROS_H
2011-02-12 00:22:29 -05:00
#define major(x) ((unsigned)((x) >> 8) & 0xff)
#define minor(x) ((unsigned)(x) & 0xff)
#define makedev(x,y) (((x)<<8)|((y)&0xff))
2011-02-12 00:22:29 -05:00
#endif