remove __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS checks in stdint.h
[musl] / include / sys / sysmacros.h
1 #ifndef _SYS_SYSMACROS_H
2 #define _SYS_SYSMACROS_H
3
4 #define major(x) ((unsigned)((x) >> 8) & 0xff)
5 #define minor(x) ((unsigned)(x) & 0xff)
6 #define makedev(x,y) (((x)<<8)|((y)&0xff))
7
8 #endif