mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-01 19:18:28 -04:00
90291bd627
ppd, and some things. Add a simple wpa_supplicant backend
8 lines
127 B
Go
8 lines
127 B
Go
package shm
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func CreateAnonFd(name string) (int, error) {
|
|
return unix.MemfdCreate(name, 0)
|
|
}
|