17 lines
		
	
	
		
			446 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			446 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _INCLUDE_SYS_TYPE_H
 | 
						|
#define _INCLUDE_SYS_TYPE_H
 | 
						|
 | 
						|
/*
 | 
						|
 * this files resolves conflicts between the file of the host system and
 | 
						|
 * the minix specific one. This file is included directly only on Minix
 | 
						|
 * and it is an error to do so on any other system
 | 
						|
 */
 | 
						|
 | 
						|
#if !defined(_MINIX) && !defined(__minix) && !defined(__ACK__)
 | 
						|
#error "Including Minix specific file in program targeted for other system"
 | 
						|
#else
 | 
						|
#include <minix/types.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |