github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/runtime/cgo/cgo.go (about)

     1  // Copyright 2010 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  
     5  /*
     6  Package cgoは、cgoツールによって生成されたコードの実行時サポートを含んでいます。cgoの使用方法の詳細については、cgoコマンドのドキュメントを参照してください。
     7  */
     8  package cgo
     9  
    10  import "github.com/shogo82148/std/runtime/internal/sys"
    11  
    12  // Incompleteは不完全なCの型のセマンティクスに特に使われます。
    13  type Incomplete struct {
    14  	_ sys.NotInHeap
    15  }