 771895a10e
			
		
	
	771895a10e
	
	
	
		
			
			git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1037 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			23 lines
		
	
	
		
			426 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			426 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*  $Revision$
 | |
| **
 | |
| **  Editline system header file for Unix.
 | |
| */
 | |
| 
 | |
| #define CRLF		"\r\n"
 | |
| #define FORWARD		STATIC
 | |
| 
 | |
| #include <sys/types.h>
 | |
| #include <sys/stat.h>
 | |
| 
 | |
| #if	defined(USE_DIRENT)
 | |
| #include <dirent.h>
 | |
| typedef struct dirent	DIRENTRY;
 | |
| #else
 | |
| #include <sys/dir.h>
 | |
| typedef struct direct	DIRENTRY;
 | |
| #endif	/* defined(USE_DIRENT) */
 | |
| 
 | |
| #if	!defined(S_ISDIR)
 | |
| #define S_ISDIR(m)		(((m) & S_IFMT) == S_IFDIR)
 | |
| #endif	/* !defined(S_ISDIR) */
 |