File: syscall.go

package info (click to toggle)
golang-github-tdewolff-minify 2.24.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,416 kB
  • sloc: javascript: 394,644; xml: 25,649; ansic: 253; makefile: 111; python: 109; sh: 74
file content (11 lines) | stat: -rw-r--r-- 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
//go:build !linux && !darwin && !netbsd && !solaris && !openbsd && !js && !wasm

package main

import "os"

var supportsGetOwnership = false

func getOwnership(info os.FileInfo) (int, int, bool) {
	return 0, 0, false
}