diff options
author | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 07:32:09 -0500 |
---|---|---|
committer | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 07:32:09 -0500 |
commit | 1e12632591ab98a6ea3af8680716c28282552981 (patch) | |
tree | 5b79bd9a0b950d6ab414fef8cbb5dfcd1a6d2e83 /arch/x86_64/bits/sysmacros.h | |
parent | c2afb747b0296f23cd1903e82ccbdee3fc2978fd (diff) | |
download | musl-1e12632591ab98a6ea3af8680716c28282552981.tar.gz musl-1e12632591ab98a6ea3af8680716c28282552981.tar.xz musl-1e12632591ab98a6ea3af8680716c28282552981.zip |
Port musl to x86-64. One giant commit!
Diffstat (limited to 'arch/x86_64/bits/sysmacros.h')
-rw-r--r-- | arch/x86_64/bits/sysmacros.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86_64/bits/sysmacros.h b/arch/x86_64/bits/sysmacros.h new file mode 100644 index 00000000..da29022d --- /dev/null +++ b/arch/x86_64/bits/sysmacros.h @@ -0,0 +1,7 @@ +#define major(x) (((x) >> 8) & 0xff) +#define minor(x) ((x) & 0xff) +#define makedev(x,y) (((x)<<8)|((y)&0xff)) + +//#define makedev(x,y) \ +// ((x)*0x100000001ULL)&(0xfffffffffff0) +// ((y)*0x1001 & 0xffff0ff) |