openidec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

unveil_other.go (164B)


      1 //go:build !openbsd
      2 // +build !openbsd
      3 
      4 package main
      5 
      6 func unveil(path string, permissions string) error {
      7 	return nil
      8 }
      9 
     10 func unveil_block() error {
     11 	return nil
     12 }