Bump GPLv2+ to GPLv3+ for some files, clarify BSD 2-clause. Everything else stays under GPLv3+. New Linking Exception exempts resulting executables from LGPLv3 section 4. Add CONTRIBUTORS file to keep track of licensing. Remove 'Copyright Red Hat Inc' comments. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
		
			
				
	
	
		
			41 lines
		
	
	
		
			842 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			842 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* sys/sysmacros.h
 | |
| 
 | |
| This file is part of Cygwin.
 | |
| 
 | |
| This software is a copyrighted work licensed under the terms of the
 | |
| Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | |
| details. */
 | |
| 
 | |
| #ifndef _SYS_SYSMACROS_H
 | |
| #define _SYS_SYSMACROS_H
 | |
| 
 | |
| #include <sys/types.h>
 | |
| 
 | |
| _ELIDABLE_INLINE int gnu_dev_major(dev_t);
 | |
| _ELIDABLE_INLINE int gnu_dev_minor(dev_t);
 | |
| _ELIDABLE_INLINE dev_t gnu_dev_makedev(int, int);
 | |
| 
 | |
| _ELIDABLE_INLINE int
 | |
| gnu_dev_major(dev_t dev)
 | |
| {
 | |
| 	return (int)(((dev) >> 16) & 0xffff);
 | |
| }
 | |
| 
 | |
| _ELIDABLE_INLINE int
 | |
| gnu_dev_minor(dev_t dev)
 | |
| {
 | |
| 	return (int)((dev) & 0xffff);
 | |
| }
 | |
| 
 | |
| _ELIDABLE_INLINE dev_t
 | |
| gnu_dev_makedev(int maj, int min)
 | |
| {
 | |
| 	return (((maj) << 16) | ((min) & 0xffff));
 | |
| }
 | |
| 
 | |
| #define major(dev) gnu_dev_major(dev)
 | |
| #define minor(dev) gnu_dev_minor(dev)
 | |
| #define makedev(maj, min) gnu_dev_makedev(maj, min)
 | |
| 
 | |
| #endif /* _SYS_SYSMACROS_H */
 |