Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 3 → Rev 80

/shark/trunk/include/sys/sysmacro.h
19,7 → 19,10
 
#ifndef _SYS_SYSMACROS_H
#define _SYS_SYSMACROS_H 1
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
_
/* For compatibility we provide alternative names.
 
The problem here is that compilers other than GCC probably don't
28,4 → 31,5
#define minor(dev) ((int)((dev) & 0xff))
#define makedev(major, minor) (((major) << 8) | (minor))
 
__END_DECLS
#endif /* sys/sysmacros.h */