11 lines
		
	
	
		
			313 B
		
	
	
	
		
			Factor
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			11 lines
		
	
	
		
			313 B
		
	
	
	
		
			Factor
		
	
	
		
			Executable File
		
	
USING: io.unix.backend io.unix.files io.unix.sockets
 | 
						|
io.unix.launcher io.unix.mmap io.backend combinators namespaces
 | 
						|
system vocabs.loader ;
 | 
						|
 | 
						|
{
 | 
						|
    { [ bsd? ] [ "io.unix.bsd" ] }
 | 
						|
    { [ macosx? ] [ "io.unix.bsd" ] }
 | 
						|
    { [ linux? ] [ "io.unix.linux" ] }
 | 
						|
    { [ solaris? ] [ "io.unix.solaris" ] }
 | 
						|
} cond require
 |