File: attr_other.go

package info (click to toggle)
golang-github-foxboron-go-uefi 0.0~git20250207.69fb7db-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,140 kB
  • sloc: makefile: 29; sh: 14
file content (16 lines) | stat: -rw-r--r-- 245 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//go:build !linux
package attr

import (
	"os"
)

// Stub implementation for OSX
func GetAttrFromFile(f *os.File) (int32, error) {
	return 0, nil
}

// Stub implementation for OSX
func SetAttrOnFile(f *os.File, attr int32) error {
	return nil
}