9195aa172b
Since aix/ppc64 has been added to GC toolchain, a mix between new and old files were created in gcc toolchain. This commit corrects this merge for aix/ppc64 and aix/ppc. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/167658 From-SVN: r269797
16 lines
324 B
Go
16 lines
324 B
Go
// 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.
|
|
|
|
// +build aix
|
|
|
|
package os
|
|
|
|
import "syscall"
|
|
|
|
//extern closedir64
|
|
func libc_closedir(*syscall.DIR) int
|
|
|
|
//extern fdopendir64
|
|
func libc_fdopendir(int32) *syscall.DIR
|