mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 04:31:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /*	This file is part of the software similarity tester SIM.
 | |
| 	Written by Dick Grune, Vrije Universiteit, Amsterdam.
 | |
| 	$Id: system.par,v 1.2 2001/09/28 09:03:55 dick Exp $
 | |
| */
 | |
| 
 | |
| /*	Operating-system dependent data */
 | |
| 
 | |
| #ifdef	UNIX
 | |
| 
 | |
| #define	int32		int		/* type of a 32 bits signed int */
 | |
| #define	NULLFILE	"/dev/null"
 | |
| 
 | |
| #endif
 | |
| 
 | |
| #ifdef	MSDOS		/* GNU gcc */
 | |
| 
 | |
| #define	int32		int		/* type of a 32 bits signed int */
 | |
| #define	NULLFILE	"nul"
 | |
| 
 | |
| #endif
 | 
