diff options
author | 2020-04-25 20:55:33 -0700 | |
---|---|---|
committer | 2020-04-25 21:11:48 -0700 | |
commit | 3b2f0a633cf6894054b54521319a8d6f1750095f (patch) | |
tree | e7dac1c126fbfb69fc01520e6b3914989eeced3a /vendor/golang.org/x/sys/unix/dev_darwin.go | |
parent | c920a8607cce2a50117209ab02c417a9e7274b51 (diff) | |
download | v2-3b2f0a633cf6894054b54521319a8d6f1750095f.tar.gz v2-3b2f0a633cf6894054b54521319a8d6f1750095f.tar.zst v2-3b2f0a633cf6894054b54521319a8d6f1750095f.zip |
Update dependencies and remove vendor folder
Diffstat (limited to 'vendor/golang.org/x/sys/unix/dev_darwin.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/dev_darwin.go | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/golang.org/x/sys/unix/dev_darwin.go b/vendor/golang.org/x/sys/unix/dev_darwin.go deleted file mode 100644 index 8d1dc0fa..00000000 --- a/vendor/golang.org/x/sys/unix/dev_darwin.go +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2017 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Functions to access/create device major and minor numbers matching the -// encoding used in Darwin's sys/types.h header. - -package unix - -// Major returns the major component of a Darwin device number. -func Major(dev uint64) uint32 { - return uint32((dev >> 24) & 0xff) -} - -// Minor returns the minor component of a Darwin device number. -func Minor(dev uint64) uint32 { - return uint32(dev & 0xffffff) -} - -// Mkdev returns a Darwin device number generated from the given major and minor -// components. -func Mkdev(major, minor uint32) uint64 { - return (uint64(major) << 24) | uint64(minor) -} |