aboutsummaryrefslogtreecommitdiff
path: root/musl/sys/sysmacros.h
diff options
context:
space:
mode:
Diffstat (limited to 'musl/sys/sysmacros.h')
-rw-r--r--musl/sys/sysmacros.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/musl/sys/sysmacros.h b/musl/sys/sysmacros.h
deleted file mode 100644
index 07a3ef1..0000000
--- a/musl/sys/sysmacros.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef _SYS_SYSMACROS_H
-#define _SYS_SYSMACROS_H
-
-#define major(x) \
- ((unsigned)( (((x)>>31>>1) & 0xfffff000) | (((x)>>8) & 0x00000fff) ))
-#define minor(x) \
- ((unsigned)( (((x)>>12) & 0xffffff00) | ((x) & 0x000000ff) ))
-
-#define makedev(x,y) ( \
- (((x)&0xfffff000ULL) << 32) | \
- (((x)&0x00000fffULL) << 8) | \
- (((y)&0xffffff00ULL) << 12) | \
- (((y)&0x000000ffULL)) )
-
-#endif