def.go 381 B

1234567891011121314151617
  1. // Copyright 2018 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.
  4. // +build darwin
  5. package issue24161arg
  6. /*
  7. #cgo LDFLAGS: -framework CoreFoundation
  8. #include <CoreFoundation/CoreFoundation.h>
  9. */
  10. import "C"
  11. func test24161array() C.CFArrayRef {
  12. return C.CFArrayCreate(0, nil, 0, nil)
  13. }