go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/auth/internal/file_unix.go (about)

     1  // Copyright 2017 The Chromium Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style license that can be
     3  // found in the LICENSE file.
     4  
     5  //go:build !windows
     6  // +build !windows
     7  
     8  package internal
     9  
    10  import (
    11  	"os"
    12  )
    13  
    14  func openSharedDelete(name string) (*os.File, error) {
    15  	return os.Open(name)
    16  }