1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-06 11:31:35 +00:00
2011-09-18 16:34:13 -04:00

9 lines
161 B
C

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