blob: b36888f75c0cd641bcbfa6664e521bb0480d98b1 [file] [log] [blame]
package fs
import "syscall"
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
return syscall.Mount(source, target, fstype, flags, data)
}