File: composefs_unix_test.go

package info (click to toggle)
golang-github-hugelgupf-p9 0.3.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 608 kB
  • sloc: makefile: 9
file content (11 lines) | stat: -rw-r--r-- 108 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
//go:build unix

package composefs

import (
	"golang.org/x/sys/unix"
)

func setUmask() {
	unix.Umask(0)
}