mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build !linux && !darwin && !freebsd && !dragonfly && !netbsd && !openbsd && !solaris
 | 
						|
// +build !linux,!darwin,!freebsd,!dragonfly,!netbsd,!openbsd,!solaris
 | 
						|
 | 
						|
package pty
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
)
 | 
						|
 | 
						|
func open() (pty, tty *os.File, err error) {
 | 
						|
	return nil, nil, ErrUnsupported
 | 
						|
}
 |