libgo: update to Go 1.11
[official-gcc.git] / libgo / go / os / user / listgroups_solaris.go
blobf3cbf6ce4a0bac532dfb5360ae72b50a02171e07
1 // Copyright 2016 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build cgo,!osusergo
7 // Even though this file requires no C, it is used to provide a
8 // listGroup stub because all the other Solaris calls work. Otherwise,
9 // this stub will conflict with the lookup_stubs.go fallback.
11 package user
13 import "fmt"
15 func listGroups(u *User) ([]string, error) {
16 return nil, fmt.Errorf("user: list groups for %s: not supported on Solaris", u.Username)