commit f14a8968913a4a86064b1688790880bb94fe5a53
Author:     sin <[email protected]>
AuthorDate: Sun Oct 4 16:36:39 2015 +0100
Commit:     sin <[email protected]>
CommitDate: Sun Oct 4 16:39:28 2015 +0100

    Stop defining major()/minor() and makedev()
    
    Rely on what the system provides.  These are not standardized macros
    but any relevant UNIX system will provide them.
    
    We can revisit this in the future if something breaks.

diff --git a/tar.c b/tar.c
index 8dbce22..16c3da0 100644
--- a/tar.c
+++ b/tar.c
@@ -17,13 +17,6 @@
 
 #define BLKSIZ 512
 
-#undef major
-#define major(dev) ((int)(((unsigned int)(dev) >> 8) & 0xff))
-#undef minor
-#define minor(dev) ((int)((dev) & 0xff))
-#undef makedev
-#define makedev(major, minor) (((major) << 8) | (minor))
-
 enum Type {
        REG       = '0',
        AREG      = '\0',

Reply via email to