14 lines
		
	
	
		
			349 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			349 B
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2007 Slava Pestov.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: io.backend system ;
 | 
						|
IN: io.launcher
 | 
						|
 | 
						|
HOOK: run-process io-backend ( string -- )
 | 
						|
 | 
						|
HOOK: run-detached io-backend ( string -- )
 | 
						|
 | 
						|
HOOK: <process-stream> io-backend ( string -- stream )
 | 
						|
 | 
						|
USE-IF: unix? io.unix.launcher
 | 
						|
USE-IF: windows? io.windows.launcher
 |