1
0
mirror of https://github.com/fluencelabs/musl synced 2025-05-16 17:21:28 +00:00

9 lines
161 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#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))
2011-02-12 00:22:29 -05:00
#endif