mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-10 16:42:59 +03:00
9 lines
161 B
C
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
|