1
0
mirror of https://github.com/fluencelabs/musl synced 2025-07-27 04:11:57 +00:00
Files
musl/include/sys/sysmacros.h

9 lines
189 B
C

#ifndef _SYS_SYSMACROS_H
#define _SYS_SYSMACROS_H
#define major(x) ((unsigned)((x) >> 8) & 0xff)
#define minor(x) ((unsigned)(x) & 0xff)
#define makedev(x,y) (((x)<<8)|((y)&0xff))
#endif