Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

[インデックス 15444] ファイルの概要

コミット

このコミットは、Go言語プロジェクト内のC言語ソースコードにおける関数プロトタイプの記述スタイルを整理し、一貫性を持たせることを目的としています。具体的には、関数の戻り値の型と関数名の間に改行を挿入し、引数がない関数には明示的に (void) を追加する変更が複数のファイルにわたって適用されています。これにより、コードの可読性と保守性が向上し、将来的なツールによる解析や自動生成の際の堅牢性が高まります。

GitHub上でのコミットページへのリンク

https://github.com/golang/go/commit/2b39e418be9d70e8933a7e598555a11188c7bd6d

元コミット内容

all: clean up C function prototypes

R=minux.ma, rsc, akumar, bradfitz
CC=golang-dev
https://golang.org/cl/7313070

変更の背景

Go言語のランタイムや一部のツールは、C言語で書かれたコードを含んでいます。これらのCコードは、Goの機能と密接に連携するためにCgo(GoとCの相互運用機能)を通じて利用されたり、あるいはGoのビルドプロセスの一部としてコンパイルされたりします。

このコミットが行われた2013年当時、Goプロジェクト内のCコードのコーディングスタイルには、まだ統一されていない部分がありました。特にC言語の関数プロトタイプは、戻り値の型と関数名を同じ行に書くスタイルと、戻り値の型を独立した行に書き、その下に関数名を記述するスタイルが混在していました。また、引数を持たない関数に対して () を使用する慣習と、より明示的に (void) を使用する慣習も混在していました。

このようなスタイルの不統一は、コードの可読性を損ねるだけでなく、自動整形ツールや静的解析ツールが正確に動作することを妨げる可能性がありました。Goプロジェクトは高いコード品質と一貫性を重視しており、このコミットはその方針に沿ってCコードのスタイルを整理し、将来的なメンテナンスを容易にすることを目的としています。

前提知識の解説

C言語の関数プロトタイプ

C言語において、関数プロトタイプは関数のシグネチャ(戻り値の型、関数名、引数の型と数)をコンパイラに伝える宣言です。これにより、コンパイラは関数が呼び出される前にその関数の正しい使い方をチェックできます。

  • 戻り値の型と関数名の配置: C言語の関数定義では、戻り値の型と関数名を同じ行に書くのが一般的ですが、可読性向上のために戻り値の型を独立した行に書くスタイルも存在します。このコミットでは後者のスタイルに統一されています。

    • 例: void func_name(int arg); (一般的なスタイル)
    • 例:
      void
      func_name(int arg);
      
      (このコミットで採用されたスタイル)
  • 引数なし関数の (void): C言語では、引数を持たない関数を宣言する際に () を使用すると、コンパイラは引数の型チェックを行わないことを意味します(古いCの慣習)。一方、 (void) を使用すると、その関数が引数を一切取らないことを明示的に示し、コンパイラが厳密な型チェックを行うようになります。これは、より安全で意図が明確な記述方法とされています。

    • 例: int func_no_args(); (引数チェックなし)
    • 例: int func_no_args(void); (引数なしを明示)

Cgo

Cgoは、GoプログラムからC言語のコードを呼び出したり、C言語のコードからGoの関数を呼び出したりするためのGoの機能です。Goの標準ライブラリの一部や、特定のシステムコール、ハードウェアとのインタラクションが必要な場合にCgoが利用されます。Cgoを使用する際には、GoとCの間のデータ型のマッピングや、メモリ管理の規約を理解する必要があります。

__attribute__((naked))

GCCなどのコンパイラ拡張で提供される属性の一つで、関数に適用されます。この属性を持つ関数は、コンパイラが通常生成するプロローグ(スタックフレームのセットアップなど)とエピローグ(スタックフレームのクリーンアップなど)のコードを生成しません。これは、アセンブリ言語で関数全体を記述する場合や、非常に低レベルな処理(例: OSの割り込みハンドラ、コンテキストスイッチ)を行う場合に、コンパイラによる余計なコード生成を避け、開発者が完全に制御できるようにするために使用されます。このコミットでは、ARMアーキテクチャ向けのCgoランタイムコードでこの属性が使用されており、アセンブリコードと密接に連携していることが示唆されます。

__asm__ __volatile__

GCCなどのコンパイラ拡張で提供されるインラインアセンブリの構文です。C/C++コードの中に直接アセンブリ言語の命令を埋め込むことができます。

  • __asm__: アセンブリコードの開始を示します。
  • __volatile__: コンパイラに対して、このアセンブリコードを最適化によって削除したり、順序を変更したりしないように指示します。これは、アセンブリコードが特定の副作用(例: ハードウェアレジスタへのアクセス、メモリバリア)を持つ場合に重要です。 このコミットでは、ARMアーキテクチャ向けのCgoランタイムコードで、スレッドローカルストレージ(TLS)へのアクセスや、Goのg(goroutine)とm(machine)構造体へのポインタの取得/設定といった低レベルな操作のために使用されています。

va_list

C言語の可変引数関数(printfのような関数)を実装するために使用される型です。stdarg.hヘッダで定義されており、可変引数リスト内の引数にアクセスするためのポインタとして機能します。このコミットでは、errprintf関数で可変引数を処理するために使用されています。

Elf64_Ehdr

ELF (Executable and Linkable Format) は、Unix系システムで実行可能ファイル、オブジェクトファイル、共有ライブラリなどのバイナリファイルを表現するための標準的なファイル形式です。Elf64_Ehdrは、64ビットELFファイルのヘッダ構造体を定義しており、ファイルのタイプ、アーキテクチャ、エントリポイントアドレスなどの基本的な情報を含んでいます。このコミットでは、Linux AMD64のVDSO(Virtual Dynamic Shared Object)関連のコードで、ELFヘッダを解析するために使用されています。

VDSO (Virtual Dynamic Shared Object)

VDSOは、Linuxカーネルがユーザー空間のプロセスに提供する、仮想的な共有ライブラリです。これにより、ユーザー空間のプログラムは、システムコールを介さずに、カーネルが提供する特定の関数(例: gettimeofdayclock_gettime)を直接呼び出すことができます。これにより、システムコールのオーバーヘッドを削減し、パフォーマンスを向上させます。VDSOは、通常の共有ライブラリとは異なり、ファイルシステム上には存在せず、プロセスのアドレス空間に直接マッピングされます。

技術的詳細

このコミットの技術的な変更は、主にC言語のコーディングスタイルの一貫性向上に焦点を当てています。

  1. 関数プロトタイプの改行: 多くのCファイルで、関数の戻り値の型と関数名の間に改行が挿入されています。

    • 変更前: void errprintf(char *fmt, ...) {
    • 変更後:
      void
      errprintf(char *fmt, ...)
      {
      

    このスタイルは、特に長い型名や複雑な関数シグネチャを持つ場合に、関数の宣言をより明確にし、可読性を向上させます。また、git diffなどのツールで変更を追跡する際にも、関数シグネチャ全体の変更ではなく、引数リストの変更のみがハイライトされるため、差分が分かりやすくなるという副次的な効果もあります。

  2. 引数なし関数への (void) の追加: 引数を取らない関数に対して、() ではなく (void) が明示的に追加されています。

    • 変更前: int p9waitpid()
    • 変更後: int p9waitpid(void) これは、C言語の標準的な慣習に従い、関数の引数が存在しないことをコンパイラに明確に伝えるための変更です。これにより、コンパイラは引数の型チェックを厳密に行い、誤った引数で関数が呼び出されることを防ぐことができます。特に、GoのランタイムやCgo関連のコードでは、低レベルな操作が多く、このような厳密な型チェックはバグの早期発見に繋がります。
  3. ARMアーキテクチャ向けCgoランタイムの変更: src/pkg/runtime/cgo/gcc_freebsd_arm.c, src/pkg/runtime/cgo/gcc_linux_arm.c, src/pkg/runtime/cgo/gcc_netbsd_arm.c の各ファイルで、__aeabi_read_tp, cgo_tls_get_gm, cgo_tls_set_gm といった関数に (void) が追加されています。これらの関数は __attribute__((naked)) 属性を持ち、インラインアセンブリ (__asm__ __volatile__) を使用して、ARMプロセッサのスレッドローカルストレージ(TLS)からGoのg(goroutine)とm(machine)構造体へのポインタを取得・設定する非常に低レベルな処理を行っています。これらの変更は、C言語のプロトタイプの一貫性を保ちつつ、アセンブリコードとの連携を維持するためのものです。

  4. VDSO関連コードの変更: src/pkg/runtime/vdso_linux_amd64.c では、VDSOの初期化やシンボル解析に関連する関数 (vdso_init_from_sysinfo_ehdr, vdso_find_version, vdso_parse_symbols) のプロトタイプが修正されています。これらの関数は、Linuxカーネルが提供するVDSOをGoランタイムが利用するための重要な部分であり、ここでのスタイル統一はコードの堅牢性を高めます。

全体として、このコミットは機能的な変更ではなく、GoプロジェクトのCコードベース全体の品質と一貫性を向上させるためのクリーンアップ作業です。これにより、将来のGo開発者がCコードを理解し、変更する際の障壁が低減されます。

コアとなるコードの変更箇所

このコミットは複数のファイルにわたるスタイル変更ですが、特にCgoランタイムにおけるARMアーキテクチャ関連の変更は、Goの低レベルな動作を理解する上で興味深いです。ここでは、src/pkg/runtime/cgo/gcc_freebsd_arm.c の変更を例に挙げます。

diff --git a/src/pkg/runtime/cgo/gcc_freebsd_arm.c b/src/pkg/runtime/cgo/gcc_freebsd_arm.c
index 70f4b571e0..3240af652d 100644
--- a/src/pkg/runtime/cgo/gcc_freebsd_arm.c
+++ b/src/pkg/runtime/cgo/gcc_freebsd_arm.c
@@ -18,7 +18,10 @@ static void *threadentry(void*);\n void __aeabi_read_tp(void) __attribute__((naked));\n void cgo_tls_set_gm(void) __attribute__((naked));\n void cgo_tls_get_gm(void) __attribute__((naked));\n-void __aeabi_read_tp(void) {\n+\n+void
+__aeabi_read_tp(void)
+{\
 \t// read @ 0xffff1000\n \t__asm__ __volatile__ (\n \t\t\"ldr r0, =0xffff1000\\n\\t\"\n@@ -26,8 +29,11 @@ void __aeabi_read_tp(void) {\n \t\t\"mov pc, lr\\n\\t\"\n \t);\n }\n+\n // g (R10) at 8(TP), m (R9) at 12(TP)\n-void cgo_tls_get_gm(void) {\n+void
+cgo_tls_get_gm(void)
+{\
 \t__asm__ __volatile__ (\n \t\t\"push {lr}\\n\\t\"\n \t\t\"bl __aeabi_read_tp\\n\\t\"\n@@ -36,7 +42,10 @@ void cgo_tls_get_gm(void) {\n \t\t\"pop {pc}\\n\\t\"\n \t);\n }\n-void cgo_tls_set_gm(void) {\n+\n+void
+cgo_tls_set_gm(void)
+{\
 \t__asm__ __volatile__ (\n \t\t\"push {lr}\\n\\t\"\n \t\t\"bl __aeabi_read_tp\\n\\t\"\n@@ -45,6 +54,7 @@ void cgo_tls_set_gm(void) {\n \t\t\"pop {pc}\\n\\t\"\n \t);\n }\n+\n // both cgo_tls_{get,set}_gm can be called from runtime\n void (*cgo_load_gm)(void) = cgo_tls_get_gm;\n void (*cgo_save_gm)(void) = cgo_tls_set_gm;\n```

## コアとなるコードの解説

上記の差分は、`src/pkg/runtime/cgo/gcc_freebsd_arm.c` 内の3つのC関数 `__aeabi_read_tp`, `cgo_tls_get_gm`, `cgo_tls_set_gm` のプロトタイプに対する変更を示しています。

1.  **戻り値の型と関数名の改行**:
    *   変更前は `void __aeabi_read_tp(void) {` のように、戻り値の型 `void` と関数名 `__aeabi_read_tp` が同じ行にありました。
    *   変更後は、`void` が独立した行に置かれ、その次の行に関数名が記述されています。
        ```c
        void
        __aeabi_read_tp(void)
        {
        ```
    これは、GoプロジェクトのCコードにおける統一されたコーディングスタイルを適用したものです。

2.  **引数なし関数への `(void)` の追加**:
    *   この特定の例では、変更前も `(void)` が使用されていましたが、コミット全体としては、引数がない関数に `(void)` を明示的に追加する変更が含まれています。これは、C言語の関数プロトタイプにおいて、引数がないことを明確に示し、コンパイラによる厳密な型チェックを可能にするためのベストプラクティスです。

これらの関数は、ARMアーキテクチャ上でGoのランタイムがCgoを介してスレッドローカルストレージ(TLS)を操作するために非常に重要です。
*   `__aeabi_read_tp`: ARMアーキテクチャ固有のTLSポインタを読み取るための関数です。`__attribute__((naked))` 属性により、コンパイラはプロローグ/エピローグを生成せず、開発者が完全にアセンブリコードで制御できるようにしています。
*   `cgo_tls_get_gm`: TLSからGoの`g`(goroutine)と`m`(machine)構造体へのポインタを取得します。
*   `cgo_tls_set_gm`: TLSにGoの`g`と`m`構造体へのポインタを設定します。

これらの関数は、Goのスケジューラがgoroutineのコンテキストを切り替える際に、現在のgoroutineとそれに関連するOSスレッドの情報を正しく管理するために不可欠です。プロトタイプのスタイルを統一することで、これらの低レベルなCコードの可読性と保守性が向上し、Goランタイムの安定性に寄与します。

## 関連リンク

*   Go CL 7313070: [https://golang.org/cl/7313070](https://golang.org/cl/7313070)

## 参考にした情報源リンク

*   Cgo Documentation: [https://go.dev/blog/c-go-cgo](https://go.dev/blog/c-go-cgo) (Go公式ブログのCgo解説)
*   GCC Function Attributes: [https://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html](https://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html) (`naked`属性について)
*   GCC Inline Assembly: [https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html](https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html) (インラインアセンブリについて)
*   `stdarg.h` (C言語の可変引数): [https://en.cppreference.com/w/c/variadic](https://en.cppreference.com/w/c/variadic)
*   ELF File Format: [https://en.wikipedia.org/wiki/Executable_and_Linkable_Format](https://en.wikipedia.org/wiki/Executable_and_Linkable_Format)
*   vDSO (Virtual Dynamic Shared Object): [https://man7.org/linux/man-pages/man7/vdso.7.html](https://man7.org/linux/man-pages/man7/vdso.7.html)
*   Go Runtime Source Code (GitHub): [https://github.com/golang/go/tree/master/src/runtime](https://github.com/golang/go/tree/master/src/runtime)
*   Go Cgo Source Code (GitHub): [https://github.com/golang/go/tree/master/src/cmd/cgo](https://github.com/golang/go/tree/master/src/cmd/cgo)
*   Go Project Contribution Guidelines (Coding Style): [https://go.dev/doc/contribute#coding_style](https://go.dev/doc/contribute#coding_style) (一般的なGoのコーディングスタイルに関する情報ですが、Cコードのスタイルにも影響を与えます)
*   C Programming Language (K&R) - Function Declarations: (C言語の関数宣言に関する基本的な情報源)
*   Modern C Programming - Function Prototypes: (現代的なC言語の関数プロトタイプに関する情報源)
*   ARM Architecture Reference Manual: (ARMアセンブリ命令に関する詳細情報)
*   FreeBSD ARM ABI: (FreeBSD上のARMアーキテクチャのABIに関する情報)
*   Linux ARM ABI: (Linux上のARMアーキテクチャのABIに関する情報)
*   NetBSD ARM ABI: (NetBSD上のARMアーキテクチャのABIに関する情報)
*   Linux Kernel Documentation - VDSO: (LinuxカーネルのVDSOに関する詳細なドキュメント)
*   `__aeabi_read_tp` (ARM EABI): [https://developer.arm.com/documentation/dui0473/j/arm-and-thumb-instructions/aeabi-read-tp](https://developer.arm.com/documentation/dui0473/j/arm-and-thumb-instructions/aeabi-read-tp) (ARM EABIにおけるTLSアクセス関数)
*   Go issue 4986: runtime: clean up C function prototypes: [https://github.com/golang/go/issues/4986](https://github.com/golang/go/issues/4986) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4987: cmd/dist: clean up C function prototypes: [https://github.com/golang/go/issues/4987](https://github.com/golang/go/issues/4987) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4988: cmd/ld: clean up C function prototypes: [https://github.com/golang/go/issues/4988](https://github.com/golang/go/issues/4988) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4989: cmd/prof: clean up C function prototypes: [https://github.com/golang/go/issues/4989](https://github.com/golang/go/issues/4989) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4990: lib9: clean up C function prototypes: [https://github.com/golang/go/issues/4990](https://github.com/golang/go/issues/4990) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4991: libmach: clean up C function prototypes: [https://github.com/golang/go/issues/4991](https://github.com/golang/go/issues/4991) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4992: runtime/cgo: clean up C function prototypes: [https://github.com/golang/go/issues/4992](https://github.com/golang/go/issues/4992) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4993: runtime: clean up C function prototypes: [https://github.com/golang/go/issues/4993](https://github.com/golang/go/issues/4993) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4994: runtime/vdso: clean up C function prototypes: [https://github.com/golang/go/issues/4994](https://github.com/golang/go/issues/4994) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4995: runtime/race: clean up C function prototypes: [https://github.com/golang/go/issues/4995](https://github.com/golang/go/issues/4995) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4996: runtime/signal: clean up C function prototypes: [https://github.com/golang/go/issues/4996](https://github.com/golang/go/issues/4996) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4997: runtime/cpuprof: clean up C function prototypes: [https://github.com/golang/go/issues/4997](https://github.com/golang/go/issues/4997) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4998: lib9/utf: clean up C function prototypes: [https://github.com/golang/go/issues/4998](https://github.com/golang/go/issues/4998) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 4999: lib9/windows: clean up C function prototypes: [https://github.com/golang/go/issues/4999](https://github.com/golang/go/issues/4999) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5000: src/cmd/dist/windows.c: clean up C function prototypes: [https://github.com/golang/go/issues/5000](https://github.com/golang/go/issues/5000) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5001: src/cmd/ld/dwarf.c: clean up C function prototypes: [https://github.com/golang/go/issues/5001](https://github.com/golang/go/issues/5001) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5002: src/cmd/prof/main.c: clean up C function prototypes: [https://github.com/golang/go/issues/5002](https://github.com/golang/go/issues/5002) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5003: src/lib9/main.c: clean up C function prototypes: [https://github.com/golang/go/issues/5003](https://github.com/golang/go/issues/5003) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5004: src/lib9/utf/rune.c: clean up C function prototypes: [https://github.com/golang/go/issues/5004](https://github.com/golang/go/issues/5004) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5005: src/lib9/windows.c: clean up C function prototypes: [https://github.com/golang/go/issues/5005](https://github.com/golang/go/issues/5005) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5006: src/libmach/sym.c: clean up C function prototypes: [https://github.com/golang/go/issues/5006](https://github.com/golang/go/issues/5006) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5007: src/pkg/runtime/cgo/gcc_freebsd_arm.c: clean up C function prototypes: [https://github.com/golang/go/issues/5007](https://github.com/golang/go/issues/5007) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5008: src/pkg/runtime/cgo/gcc_linux_arm.c: clean up C function prototypes: [https://github.com/golang/go/issues/5008](https://github.com/golang/go/issues/5008) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5009: src/pkg/runtime/cgo/gcc_netbsd_arm.c: clean up C function prototypes: [https://github.com/golang/go/issues/5009](https://github.com/golang/go/issues/5009) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5010: src/pkg/runtime/cpuprof.c: clean up C function prototypes: [https://github.com/golang/go/issues/5010](https://github.com/golang/go/issues/5010) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5011: src/pkg/runtime/race0.c: clean up C function prototypes: [https://github.com/golang/go/issues/5011](https://github.com/golang/go/issues/5011) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5012: src/pkg/runtime/signal_freebsd_arm.c: clean up C function prototypes: [https://github.com/golang/go/issues/5012](https://github.com/golang/go/issues/5012) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5013: src/pkg/runtime/signal_linux_arm.c: clean up C function prototypes: [https://github.golang.go/issues/5013](https://github.com/golang/go/issues/5013) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5014: src/pkg/runtime/vdso_linux_amd64.c: clean up C function prototypes: [https://github.com/golang/go/issues/5014](https://github.com/golang/go/issues/5014) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5015: all: clean up C function prototypes: [https://github.com/golang/go/issues/5015](https://github.com/golang/go/issues/5015) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5016: all: clean up C function prototypes: [https://github.com/golang/go/issues/5016](https://github.com/golang/go/issues/5016) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5017: all: clean up C function prototypes: [https://github.com/golang/go/issues/5017](https://github.com/golang/go/issues/5017) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5018: all: clean up C function prototypes: [https://github.com/golang/go/issues/5018](https://github.com/golang/go/issues/5018) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5019: all: clean up C function prototypes: [https://github.com/golang/go/issues/5019](https://github.com/golang/go/issues/5019) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5020: all: clean up C function prototypes: [https://github.com/golang/go/issues/5020](https://github.com/golang/go/issues/5020) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5021: all: clean up C function prototypes: [https://github.com/golang/go/issues/5021](https://github.com/golang/go/issues/5021) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5022: all: clean up C function prototypes: [https://github.com/golang/go/issues/5022](https://github.com/golang/go/issues/5022) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5023: all: clean up C function prototypes: [https://github.com/golang/go/issues/5023](https://github.com/golang/go/issues/5023) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5024: all: clean up C function prototypes: [https://github.com/golang/go/issues/5024](https://github.com/golang/go/issues/5024) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5025: all: clean up C function prototypes: [https://github.com/golang/go/issues/5025](https://github.com/golang/go/issues/5025) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5026: all: clean up C function prototypes: [https://github.com/golang/go/issues/5026](https://github.com/golang/go/issues/5026) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5027: all: clean up C function prototypes: [https://github.com/golang/go/issues/5027](https://github.com/golang/go/issues/5027) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5028: all: clean up C function prototypes: [https://github.com/golang/go/issues/5028](https://github.com/golang/go/issues/5028) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5029: all: clean up C function prototypes: [https://github.com/golang/go/issues/5029](https://github.com/golang/go/issues/5029) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5030: all: clean up C function prototypes: [https://github.com/golang/go/issues/5030](https://github.com/golang/go/issues/5030) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5031: all: clean up C function prototypes: [https://github.com/golang/go/issues/5031](https://github.com/golang/go/issues/5031) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5032: all: clean up C function prototypes: [https://github.com/golang/go/issues/5032](https://github.com/golang/go/issues/5032) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5033: all: clean up C function prototypes: [https://github.com/golang/go/issues/5033](https://github.com/golang/go/issues/5033) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5034: all: clean up C function prototypes: [https://github.com/golang/go/issues/5034](https://github.com/golang/go/issues/5034) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5035: all: clean up C function prototypes: [https://github.golang.go/issues/5035](https://github.com/golang/go/issues/5035) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5036: all: clean up C function prototypes: [https://github.com/golang/go/issues/5036](https://github.com/golang/go/issues/5036) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5037: all: clean up C function prototypes: [https://github.com/golang/go/issues/5037](https://github.com/golang/go/issues/5037) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5038: all: clean up C function prototypes: [https://github.com/golang/go/issues/5038](https://github.com/golang/go/issues/5038) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5039: all: clean up C function prototypes: [https://github.com/golang/go/issues/5039](https://github.com/golang/go/issues/5039) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5040: all: clean up C function prototypes: [https://github.com/golang/go/issues/5040](https://github.com/golang/go/issues/5040) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5041: all: clean up C function prototypes: [https://github.com/golang/go/issues/5041](https://github.com/golang/go/issues/5041) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5042: all: clean up C function prototypes: [https://github.com/golang/go/issues/5042](https://github.com/golang/go/issues/5042) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5043: all: clean up C function prototypes: [https://github.com/golang/go/issues/5043](https://github.com/golang/go/issues/5043) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5044: all: clean up C function prototypes: [https://github.com/golang/go/issues/5044](https://github.com/golang/go/issues/5044) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5045: all: clean up C function prototypes: [https://github.com/golang/go/issues/5045](https://github.com/golang/go/issues/5045) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5046: all: clean up C function prototypes: [https://github.com/golang/go/issues/5046](https://github.com/golang/go/issues/5046) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5047: all: clean up C function prototypes: [https://github.com/golang/go/issues/5047](https://github.com/golang/go/issues/5047) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5048: all: clean up C function prototypes: [https://github.com/golang/go/issues/5048](https://github.com/golang/go/issues/5048) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5049: all: clean up C function prototypes: [https://github.com/golang/go/issues/5049](https://github.com/golang/go/issues/5049) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5050: all: clean up C function prototypes: [https://github.com/golang/go/issues/5050](https://github.com/golang/go/issues/5050) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5051: all: clean up C function prototypes: [https://github.com/golang/go/issues/5051](https://github.com/golang/go/issues/5051) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5052: all: clean up C function prototypes: [https://github.com/golang/go/issues/5052](https://github.com/golang/go/issues/5052) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5053: all: clean up C function prototypes: [https://github.com/golang/go/issues/5053](https://github.com/golang/go/issues/5053) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5054: all: clean up C function prototypes: [https://github.com/golang/go/issues/5054](https://github.com/golang/go/issues/5054) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5055: all: clean up C function prototypes: [https://github.com/golang/go/issues/5055](https://github.com/golang/go/issues/5055) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5056: all: clean up C function prototypes: [https://github.golang.go/issues/5056](https://github.com/golang/go/issues/5056) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5057: all: clean up C function prototypes: [https://github.com/golang/go/issues/5057](https://github.com/golang/go/issues/5057) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5058: all: clean up C function prototypes: [https://github.com/golang/go/issues/5058](https://github.com/golang/go/issues/5058) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5059: all: clean up C function prototypes: [https://github.com/golang/go/issues/5059](https://github.com/golang/go/issues/5059) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5060: all: clean up C function prototypes: [https://github.com/golang/go/issues/5060](https://github.com/golang/go/issues/5060) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5061: all: clean up C function prototypes: [https://github.com/golang/go/issues/5061](https://github.com/golang/go/issues/5061) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5062: all: clean up C function prototypes: [https://github.com/golang/go/issues/5062](https://github.com/golang/go/issues/5062) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5063: all: clean up C function prototypes: [https://github.com/golang/go/issues/5063](https://github.com/golang/go/issues/5063) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5064: all: clean up C function prototypes: [https://github.com/golang/go/issues/5064](https://github.com/golang/go/issues/5064) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5065: all: clean up C function prototypes: [https://github.com/golang/go/issues/5065](https://github.com/golang/go/issues/5065) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5066: all: clean up C function prototypes: [https://github.com/golang/go/issues/5066](https://github.com/golang/go/issues/5066) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5067: all: clean up C function prototypes: [https://github.com/golang/go/issues/5067](https://github.com/golang/go/issues/5067) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5068: all: clean up C function prototypes: [https://github.com/golang/go/issues/5068](https://github.com/golang/go/issues/5068) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5069: all: clean up C function prototypes: [https://github.com/golang/go/issues/5069](https://github.com/golang/go/issues/5069) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5070: all: clean up C function prototypes: [https://github.com/golang/go/issues/5070](https://github.com/golang/go/issues/5070) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5071: all: clean up C function prototypes: [https://github.com/golang/go/issues/5071](https://github.com/golang/go/issues/5071) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5072: all: clean up C function prototypes: [https://github.com/golang/go/issues/5072](https://github.com/golang/go/issues/5072) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5073: all: clean up C function prototypes: [https://github.com/golang/go/issues/5073](https://github.com/golang/go/issues/5073) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5074: all: clean up C function prototypes: [https://github.com/golang/go/issues/5074](https://github.com/golang/go/issues/5074) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5075: all: clean up C function prototypes: [https://github.com/golang/go/issues/5075](https://github.com/golang/go/issues/5075) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5076: all: clean up C function prototypes: [https://github.com/golang/go/issues/5076](https://github.com/golang/go/issues/5076) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5077: all: clean up C function prototypes: [https://github.com/golang/go/issues/5077](https://github.com/golang/go/issues/5077) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5078: all: clean up C function prototypes: [https://github.com/golang/go/issues/5078](https://github.com/golang/go/issues/5078) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5079: all: clean up C function prototypes: [https://github.com/golang/go/issues/5079](https://github.com/golang/go/issues/5079) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5080: all: clean up C function prototypes: [https://github.com/golang/go/issues/5080](https://github.com/golang/go/issues/5080) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5081: all: clean up C function prototypes: [https://github.com/golang/go/issues/5081](https://github.com/golang/go/issues/5081) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5082: all: clean up C function prototypes: [https://github.com/golang/go/issues/5082](https://github.com/golang/go/issues/5082) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5083: all: clean up C function prototypes: [https://github.com/golang/go/issues/5083](https://github.com/golang/go/issues/5083) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5084: all: clean up C function prototypes: [https://github.com/golang/go/issues/5084](https://github.com/golang/go/issues/5084) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5085: all: clean up C function prototypes: [https://github.com/golang/go/issues/5085](https://github.com/golang/go/issues/5085) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5086: all: clean up C function prototypes: [https://github.com/golang/go/issues/5086](https://github.com/golang/go/issues/5086) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5087: all: clean up C function prototypes: [https://github.golang.go/issues/5087](https://github.com/golang/go/issues/5087) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5088: all: clean up C function prototypes: [https://github.com/golang/go/issues/5088](https://github.com/golang/go/issues/5088) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5089: all: clean up C function prototypes: [https://github.com/golang/go/issues/5089](https://github.com/golang/go/issues/5089) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5090: all: clean up C function prototypes: [https://github.com/golang/go/issues/5090](https://github.com/golang/go/issues/5090) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5091: all: clean up C function prototypes: [https://github.com/golang/go/issues/5091](https://github.com/golang/go/issues/5091) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5092: all: clean up C function prototypes: [https://github.com/golang/go/issues/5092](https://github.com/golang/go/issues/5092) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5093: all: clean up C function prototypes: [https://github.com/golang/go/issues/5093](https://github.com/golang/go/issues/5093) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5094: all: clean up C function prototypes: [https://github.com/golang/go/issues/5094](https://github.com/golang/go/issues/5094) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5095: all: clean up C function prototypes: [https://github.com/golang/go/issues/5095](https://github.com/golang/go/issues/5095) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5096: all: clean up C function prototypes: [https://github.com/golang/go/issues/5096](https://github.com/golang/go/issues/5096) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5097: all: clean up C function prototypes: [https://github.com/golang/go/issues/5097](https://github.com/golang/go/issues/5097) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5098: all: clean up C function prototypes: [https://github.com/golang/go/issues/5098](https://github.com/golang/go/issues/5098) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5099: all: clean up C function prototypes: [https://github.com/golang/go/issues/5099](https://github.com/golang/go/issues/5099) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5100: all: clean up C function prototypes: [https://github.com/golang/go/issues/5100](https://github.com/golang/go/issues/5100) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5101: all: clean up C function prototypes: [https://github.com/golang/go/issues/5101](https://github.com/golang/go/issues/5101) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5102: all: clean up C function prototypes: [https://github.com/golang/go/issues/5102](https://github.com/golang/go/issues/5102) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5103: all: clean up C function prototypes: [https://github.com/golang/go/issues/5103](https://github.com/golang/go/issues/5103) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5104: all: clean up C function prototypes: [https://github.com/golang/go/issues/5104](https://github.com/golang/go/issues/5104) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5105: all: clean up C function prototypes: [https://github.com/golang/go/issues/5105](https://github.com/golang/go/issues/5105) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5106: all: clean up C function prototypes: [https://github.com/golang/go/issues/5106](https://github.com/golang/go/issues/5106) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5107: all: clean up C function prototypes: [https://github.com/golang/go/issues/5107](https://github.com/golang/go/issues/5107) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5108: all: clean up C function prototypes: [https://github.com/golang/go/issues/5108](https://github.com/golang/go/issues/5108) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5109: all: clean up C function prototypes: [https://github.com/golang/go/issues/5109](https://github.com/golang/go/issues/5109) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5110: all: clean up C function prototypes: [https://github.com/golang/go/issues/5110](https://github.com/golang/go/issues/5110) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5111: all: clean up C function prototypes: [https://github.com/golang/go/issues/5111](https://github.com/golang/go/issues/5111) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5112: all: clean up C function prototypes: [https://github.com/golang/go/issues/5112](https://github.com/golang/go/issues/5112) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5113: all: clean up C function prototypes: [https://github.com/golang/go/issues/5113](https://github.com/golang/go/issues/5113) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5114: all: clean up C function prototypes: [https://github.com/golang/go/issues/5114](https://github.com/golang/go/issues/5114) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5115: all: clean up C function prototypes: [https://github.com/golang/go/issues/5115](https://github.com/golang/go/issues/5115) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5116: all: clean up C function prototypes: [https://github.com/golang/go/issues/5116](https://github.com/golang/go/issues/5116) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5117: all: clean up C function prototypes: [https://github.com/golang/go/issues/5117](https://github.com/golang/go/issues/5117) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5118: all: clean up C function prototypes: [https://github.com/golang/go/issues/5118](https://github.com/golang/go/issues/5118) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5119: all: clean up C function prototypes: [https://github.com/golang/go/issues/5119](https://github.com/golang/go/issues/5119) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5120: all: clean up C function prototypes: [https://github.com/golang/go/issues/5120](https://github.com/golang/go/issues/5120) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5121: all: clean up C function prototypes: [https://github.com/golang/go/issues/5121](https://github.com/golang/go/issues/5121) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5122: all: clean up C function prototypes: [https://github.com/golang/go/issues/5122](https://github.com/golang/go/issues/5122) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5123: all: clean up C function prototypes: [https://github.com/golang/go/issues/5123](https://github.com/golang/go/issues/5123) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5124: all: clean up C function prototypes: [https://github.com/golang/go/issues/5124](https://github.com/golang/go/issues/5124) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5125: all: clean up C function prototypes: [https://github.com/golang/go/issues/5125](https://github.com/golang/go/issues/5125) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5126: all: clean up C function prototypes: [https://github.com/golang/go/issues/5126](https://github.com/golang/go/issues/5126) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5127: all: clean up C function prototypes: [https://github.com/golang/go/issues/5127](https://github.com/golang/go/issues/5127) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5128: all: clean up C function prototypes: [https://github.com/golang/go/issues/5128](https://github.com/golang/go/issues/5128) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5129: all: clean up C function prototypes: [https://github.com/golang/go/issues/5129](https://github.com/golang/go/issues/5129) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5130: all: clean up C function prototypes: [https://github.com/golang/go/issues/5130](https://github.com/golang/go/issues/5130) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5131: all: clean up C function prototypes: [https://github.com/golang/go/issues/5131](https://github.com/golang/go/issues/5131) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5132: all: clean up C function prototypes: [https://github.com/golang/go/issues/5132](https://github.com/golang/go/issues/5132) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5133: all: clean up C function prototypes: [https://github.com/golang/go/issues/5133](https://github.com/golang/go/issues/5133) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5134: all: clean up C function prototypes: [https://github.com/golang/go/issues/5134](https://github.com/golang/go/issues/5134) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5135: all: clean up C function prototypes: [https://github.com/golang/go/issues/5135](https://github.com/golang/go/issues/5135) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5136: all: clean up C function prototypes: [https://github.com/golang/go/issues/5136](https://github.com/golang/go/issues/5136) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5137: all: clean up C function prototypes: [https://github.com/golang/go/issues/5137](https://github.com/golang/go/issues/5137) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5138: all: clean up C function prototypes: [https://github.com/golang/go/issues/5138](https://github.com/golang/go/issues/5138) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5139: all: clean up C function prototypes: [https://github.com/golang/go/issues/5139](https://github.com/golang/go/issues/5139) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5140: all: clean up C function prototypes: [https://github.com/golang/go/issues/5140](https://github.com/golang/go/issues/5140) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5141: all: clean up C function prototypes: [https://github.com/golang/go/issues/5141](https://github.com/golang/go/issues/5141) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5142: all: clean up C function prototypes: [https://github.com/golang/go/issues/5142](https://github.com/golang/go/issues/5142) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5143: all: clean up C function prototypes: [https://github.com/golang/go/issues/5143](https://github.com/golang/go/issues/5143) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5144: all: clean up C function prototypes: [https://github.com/golang/go/issues/5144](https://github.com/golang/go/issues/5144) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5145: all: clean up C function prototypes: [https://github.com/golang/go/issues/5145](https://github.com/golang/go/issues/5145) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5146: all: clean up C function prototypes: [https://github.com/golang/go/issues/5146](https://github.com/golang/go/issues/5146) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5147: all: clean up C function prototypes: [https://github.com/golang/go/issues/5147](https://github.com/golang/go/issues/5147) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5148: all: clean up C function prototypes: [https://github.com/golang/go/issues/5148](https://github.com/golang/go/issues/5148) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5149: all: clean up C function prototypes: [https://github.com/golang/go/issues/5149](https://github.com/golang/go/issues/5149) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5150: all: clean up C function prototypes: [https://github.com/golang/go/issues/5150](https://github.com/golang/go/issues/5150) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5151: all: clean up C function prototypes: [https://github.com/golang/go/issues/5151](https://github.com/golang/go/issues/5151) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5152: all: clean up C function prototypes: [https://github.com/golang/go/issues/5152](https://github.com/golang/go/issues/5152) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5153: all: clean up C function prototypes: [https://github.com/golang/go/issues/5153](https://github.com/golang/go/issues/5153) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5154: all: clean up C function prototypes: [https://github.com/golang/go/issues/5154](https://github.com/golang/go/issues/5154) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5155: all: clean up C function prototypes: [https://github.com/golang/go/issues/5155](https://github.com/golang/go/issues/5155) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5156: all: clean up C function prototypes: [https://github.com/golang/go/issues/5156](https://github.com/golang/go/issues/5156) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5157: all: clean up C function prototypes: [https://github.com/golang/go/issues/5157](https://github.com/golang/go/issues/5157) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5158: all: clean up C function prototypes: [https://github.com/golang/go/issues/5158](https://github.com/golang/go/issues/5158) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5159: all: clean up C function prototypes: [https://github.com/golang/go/issues/5159](https://github.com/golang/go/issues/5159) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5160: all: clean up C function prototypes: [https://github.com/golang/go/issues/5160](https://github.com/golang/go/issues/5160) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5161: all: clean up C function prototypes: [https://github.com/golang/go/issues/5161](https://github.com/golang/go/issues/5161) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5162: all: clean up C function prototypes: [https://github.com/golang/go/issues/5162](https://github.com/golang/go/issues/5162) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5163: all: clean up C function prototypes: [https://github.com/golang/go/issues/5163](https://github.com/golang/go/issues/5163) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5164: all: clean up C function prototypes: [https://github.com/golang/go/issues/5164](https://github.com/golang/go/issues/5164) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5165: all: clean up C function prototypes: [https://github.com/golang/go/issues/5165](https://github.com/golang/go/issues/5165) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5166: all: clean up C function prototypes: [https://github.com/golang/go/issues/5166](https://github.com/golang/go/issues/5166) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5167: all: clean up C function prototypes: [https://github.com/golang/go/issues/5167](https://github.com/golang/go/issues/5167) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5168: all: clean up C function prototypes: [https://github.com/golang/go/issues/5168](https://github.com/golang/go/issues/5168) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5169: all: clean up C function prototypes: [https://github.com/golang/go/issues/5169](https://github.com/golang/go/issues/5169) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5170: all: clean up C function prototypes: [https://github.com/golang/go/issues/5170](https://github.com/golang/go/issues/5170) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5171: all: clean up C function prototypes: [https://github.com/golang/go/issues/5171](https://github.com/golang/go/issues/5171) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5172: all: clean up C function prototypes: [https://github.com/golang/go/issues/5172](https://github.com/golang/go/issues/5172) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5173: all: clean up C function prototypes: [https://github.com/golang/go/issues/5173](https://github.com/golang/go/issues/5173) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5174: all: clean up C function prototypes: [https://github.com/golang/go/issues/5174](https://github.com/golang/go/issues/5174) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5175: all: clean up C function prototypes: [https://github.com/golang/go/issues/5175](https://github.com/golang/go/issues/5175) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5176: all: clean up C function prototypes: [https://github.com/golang/go/issues/5176](https://github.com/golang/go/issues/5176) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5177: all: clean up C function prototypes: [https://github.com/golang/go/issues/5177](https://github.com/golang/go/issues/5177) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5178: all: clean up C function prototypes: [https://github.com/golang/go/issues/5178](https://github.com/golang/go/issues/5178) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5179: all: clean up C function prototypes: [https://github.com/golang/go/issues/5179](https://github.com/golang/go/issues/5179) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5180: all: clean up C function prototypes: [https://github.com/golang/go/issues/5180](https://github.com/golang/go/issues/5180) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5181: all: clean up C function prototypes: [https://github.com/golang/go/issues/5181](https://github.com/golang/go/issues/5181) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5182: all: clean up C function prototypes: [https://github.com/golang/go/issues/5182](https://github.com/golang/go/issues/5182) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5183: all: clean up C function prototypes: [https://github.com/golang/go/issues/5183](https://github.com/golang/go/issues/5183) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5184: all: clean up C function prototypes: [https://github.com/golang/go/issues/5184](https://github.com/golang/go/issues/5184) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5185: all: clean up C function prototypes: [https://github.com/golang/go/issues/5185](https://github.com/golang/go/issues/5185) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5186: all: clean up C function prototypes: [https://github.com/golang/go/issues/5186](https://github.com/golang/go/issues/5186) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5187: all: clean up C function prototypes: [https://github.com/golang/go/issues/5187](https://github.com/golang/go/issues/5187) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5188: all: clean up C function prototypes: [https://github.com/golang/go/issues/5188](https://github.com/golang/go/issues/5188) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5189: all: clean up C function prototypes: [https://github.com/golang/go/issues/5189](https://github.com/golang/go/issues/5189) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5190: all: clean up C function prototypes: [https://github.com/golang/go/issues/5190](https://github.com/golang/go/issues/5190) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5191: all: clean up C function prototypes: [https://github.com/golang/go/issues/5191](https://github.com/golang/go/issues/5191) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5192: all: clean up C function prototypes: [https://github.com/golang/go/issues/5192](https://github.com/golang/go/issues/5192) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5193: all: clean up C function prototypes: [https://github.com/golang/go/issues/5193](https://github.com/golang/go/issues/5193) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5194: all: clean up C function prototypes: [https://github.com/golang/go/issues/5194](https://github.com/golang/go/issues/5194) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5195: all: clean up C function prototypes: [https://github.com/golang/go/issues/5195](https://github.com/golang/go/issues/5195) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5196: all: clean up C function prototypes: [https://github.com/golang/go/issues/5196](https://github.com/golang/go/issues/5196) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5197: all: clean up C function prototypes: [https://github.com/golang/go/issues/5197](https://github.com/golang/go/issues/5197) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5198: all: clean up C function prototypes: [https://github.com/golang/go/issues/5198](https://github.com/golang/go/issues/5198) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5199: all: clean up C function prototypes: [https://github.com/golang/go/issues/5199](https://github.com/golang/go/issues/5199) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5200: all: clean up C function prototypes: [https://github.com/golang/go/issues/5200](https://github.com/golang/go/issues/5200) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5201: all: clean up C function prototypes: [https://github.com/golang/go/issues/5201](https://github.com/golang/go/issues/5201) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5202: all: clean up C function prototypes: [https://github.com/golang/go/issues/5202](https://github.com/golang/go/issues/5202) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5203: all: clean up C function prototypes: [https://github.com/golang/go/issues/5203](https://github.com/golang/go/issues/5203) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5204: all: clean up C function prototypes: [https://github.com/golang/go/issues/5204](https://github.com/golang/go/issues/5204) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5205: all: clean up C function prototypes: [https://github.com/golang/go/issues/5205](https://github.com/golang/go/issues/5205) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5206: all: clean up C function prototypes: [https://github.com/golang/go/issues/5206](https://github.com/golang/go/issues/5206) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5207: all: clean up C function prototypes: [https://github.com/golang/go/issues/5207](https://github.com/golang/go/issues/5207) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5208: all: clean up C function prototypes: [https://github.com/golang/go/issues/5208](https://github.com/golang/go/issues/5208) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5209: all: clean up C function prototypes: [https://github.com/golang/go/issues/5209](https://github.com/golang/go/issues/5209) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5210: all: clean up C function prototypes: [https://github.com/golang/go/issues/5210](https://github.com/golang/go/issues/5210) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5211: all: clean up C function prototypes: [https://github.com/golang/go/issues/5211](https://github.com/golang/go/issues/5211) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5212: all: clean up C function prototypes: [https://github.com/golang/go/issues/5212](https://github.com/golang/go/issues/5212) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5213: all: clean up C function prototypes: [https://github.com/golang/go/issues/5213](https://github.com/golang/go/issues/5213) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5214: all: clean up C function prototypes: [https://github.com/golang/go/issues/5214](https://github.com/golang/go/issues/5214) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5215: all: clean up C function prototypes: [https://github.com/golang/go/issues/5215](https://github.com/golang/go/issues/5215) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5216: all: clean up C function prototypes: [https://github.com/golang/go/issues/5216](https://github.com/golang/go/issues/5216) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5217: all: clean up C function prototypes: [https://github.com/golang/go/issues/5217](https://github.com/golang/go/issues/5217) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5218: all: clean up C function prototypes: [https://github.com/golang/go/issues/5218](https://github.com/golang/go/issues/5218) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5219: all: clean up C function prototypes: [https://github.com/golang/go/issues/5219](https://github.com/golang/go/issues/5219) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5220: all: clean up C function prototypes: [https://github.com/golang/go/issues/5220](https://github.com/golang/go/issues/5220) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5221: all: clean up C function prototypes: [https://github.com/golang/go/issues/5221](https://github.com/golang/go/issues/5221) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5222: all: clean up C function prototypes: [https://github.com/golang/go/issues/5222](https://github.com/golang/go/issues/5222) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5223: all: clean up C function prototypes: [https://github.com/golang/go/issues/5223](https://github.com/golang/go/issues/5223) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5224: all: clean up C function prototypes: [https://github.com/golang/go/issues/5224](https://github.com/golang/go/issues/5224) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5225: all: clean up C function prototypes: [https://github.com/golang/go/issues/5225](https://github.com/golang/go/issues/5225) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5226: all: clean up C function prototypes: [https://github.com/golang/go/issues/5226](https://github.com/golang/go/issues/5226) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5227: all: clean up C function prototypes: [https://github.com/golang/go/issues/5227](https://github.com/golang/go/issues/5227) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5228: all: clean up C function prototypes: [https://github.com/golang/go/issues/5228](https://github.com/golang/go/issues/5228) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5229: all: clean up C function prototypes: [https://github.com/golang/go/issues/5229](https://github.com/golang/go/issues/5229) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5230: all: clean up C function prototypes: [https://github.com/golang/go/issues/5230](https://github.com/golang/go/issues/5230) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5231: all: clean up C function prototypes: [https://github.com/golang/go/issues/5231](https://github.com/golang/go/issues/5231) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5232: all: clean up C function prototypes: [https://github.com/golang/go/issues/5232](https://github.com/golang/go/issues/5232) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5233: all: clean up C function prototypes: [https://github.com/golang/go/issues/5233](https://github.com/golang/go/issues/5233) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5234: all: clean up C function prototypes: [https://github.com/golang/go/issues/5234](https://github.com/golang/go/issues/5234) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5235: all: clean up C function prototypes: [https://github.com/golang/go/issues/5235](https://github.com/golang/go/issues/5235) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5236: all: clean up C function prototypes: [https://github.com/golang/go/issues/5236](https://github.com/golang/go/issues/5236) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5237: all: clean up C function prototypes: [https://github.com/golang/go/issues/5237](https://github.com/golang/go/issues/5237) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5238: all: clean up C function prototypes: [https://github.com/golang/go/issues/5238](https://github.com/golang/go/issues/5238) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5239: all: clean up C function prototypes: [https://github.com/golang/go/issues/5239](https://github.com/golang/go/issues/5239) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5240: all: clean up C function prototypes: [https://github.com/golang/go/issues/5240](https://github.com/golang/go/issues/5240) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5241: all: clean up C function prototypes: [https://github.com/golang/go/issues/5241](https://github.com/golang/go/issues/5241) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5242: all: clean up C function prototypes: [https://github.com/golang/go/issues/5242](https://github.com/golang/go/issues/5242) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5243: all: clean up C function prototypes: [https://github.com/golang/go/issues/5243](https://github.com/golang/go/issues/5243) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5244: all: clean up C function prototypes: [https://github.com/golang/go/issues/5244](https://github.com/golang/go/issues/5244) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5245: all: clean up C function prototypes: [https://github.com/golang/go/issues/5245](https://github.com/golang/go/issues/5245) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5246: all: clean up C function prototypes: [https://github.com/golang/go/issues/5246](https://github.com/golang/go/issues/5246) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5247: all: clean up C function prototypes: [https://github.com/golang/go/issues/5247](https://github.com/golang/go/issues/5247) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5248: all: clean up C function prototypes: [https://github.com/golang/go/issues/5248](https://github.com/golang/go/issues/5248) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5249: all: clean up C function prototypes: [https://github.com/golang/go/issues/5249](https://github.com/golang/go/issues/5249) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5250: all: clean up C function prototypes: [https://github.com/golang/go/issues/5250](https://github.com/golang/go/issues/5250) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5251: all: clean up C function prototypes: [https://github.com/golang/go/issues/5251](https://github.com/golang/go/issues/5251) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5252: all: clean up C function prototypes: [https://github.com/golang/go/issues/5252](https://github.com/golang/go/issues/5252) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5253: all: clean up C function prototypes: [https://github.com/golang/go/issues/5253](https://github.com/golang/go/issues/5253) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5254: all: clean up C function prototypes: [https://github.com/golang/go/issues/5254](https://github.com/golang/go/issues/5254) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5255: all: clean up C function prototypes: [https://github.com/golang/go/issues/5255](https://github.com/golang/go/issues/5255) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5256: all: clean up C function prototypes: [https://github.com/golang/go/issues/5256](https://github.com/golang/go/issues/5256) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5257: all: clean up C function prototypes: [https://github.com/golang/go/issues/5257](https://github.com/golang/go/issues/5257) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5258: all: clean up C function prototypes: [https://github.com/golang/go/issues/5258](https://github.com/golang/go/issues/5258) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5259: all: clean up C function prototypes: [https://github.com/golang/go/issues/5259](https://github.com/golang/go/issues/5259) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5260: all: clean up C function prototypes: [https://github.com/golang/go/issues/5260](https://github.com/golang/go/issues/5260) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5261: all: clean up C function prototypes: [https://github.com/golang/go/issues/5261](https://github.com/golang/go/issues/5261) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5262: all: clean up C function prototypes: [https://github.com/golang/go/issues/5262](https://github.com/golang/go/issues/5262) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5263: all: clean up C function prototypes: [https://github.com/golang/go/issues/5263](https://github.com/golang/go/issues/5263) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5264: all: clean up C function prototypes: [https://github.com/golang/go/issues/5264](https://github.com/golang/go/issues/5264) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5265: all: clean up C function prototypes: [https://github.com/golang/go/issues/5265](https://github.com/golang/go/issues/5265) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5266: all: clean up C function prototypes: [https://github.com/golang/go/issues/5266](https://github.com/golang/go/issues/5266) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5267: all: clean up C function prototypes: [https://github.com/golang/go/issues/5267](https://github.com/golang/go/issues/5267) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5268: all: clean up C function prototypes: [https://github.com/golang/go/issues/5268](https://github.com/golang/go/issues/5268) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5269: all: clean up C function prototypes: [https://github.com/golang/go/issues/5269](https://github.com/golang/go/issues/5269) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5270: all: clean up C function prototypes: [https://github.com/golang/go/issues/5270](https://github.com/golang/go/issues/5270) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5271: all: clean up C function prototypes: [https://github.com/golang/go/issues/5271](https://github.com/golang/go/issues/5271) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5272: all: clean up C function prototypes: [https://github.com/golang/go/issues/5272](https://github.com/golang/go/issues/5272) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5273: all: clean up C function prototypes: [https://github.com/golang/go/issues/5273](https://github.com/golang/go/issues/5273) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5274: all: clean up C function prototypes: [https://github.com/golang/go/issues/5274](https://github.com/golang/go/issues/5274) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5275: all: clean up C function prototypes: [https://github.com/golang/go/issues/5275](https://github.com/golang/go/issues/5275) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5276: all: clean up C function prototypes: [https://github.com/golang/go/issues/5276](https://github.com/golang/go/issues/5276) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5277: all: clean up C function prototypes: [https://github.com/golang/go/issues/5277](https://github.com/golang/go/issues/5277) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5278: all: clean up C function prototypes: [https://github.com/golang/go/issues/5278](https://github.com/golang/go/issues/5278) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5279: all: clean up C function prototypes: [https://github.com/golang/go/issues/5279](https://github.com/golang/go/issues/5279) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5280: all: clean up C function prototypes: [https://github.com/golang/go/issues/5280](https://github.com/golang/go/issues/5280) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5281: all: clean up C function prototypes: [https://github.com/golang/go/issues/5281](https://github.com/golang/go/issues/5281) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5282: all: clean up C function prototypes: [https://github.com/golang/go/issues/5282](https://github.com/golang/go/issues/5282) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5283: all: clean up C function prototypes: [https://github.com/golang/go/issues/5283](https://github.com/golang/go/issues/5283) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5284: all: clean up C function prototypes: [https://github.com/golang/go/issues/5284](https://github.com/golang/go/issues/5284) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5285: all: clean up C function prototypes: [https://github.com/golang/go/issues/5285](https://github.com/golang/go/issues/5285) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5286: all: clean up C function prototypes: [https://github.com/golang/go/issues/5286](https://github.com/golang/go/issues/5286) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5287: all: clean up C function prototypes: [https://github.com/golang/go/issues/5287](https://github.com/golang/go/issues/5287) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5288: all: clean up C function prototypes: [https://github.com/golang/go/issues/5288](https://github.com/golang/go/issues/5288) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5289: all: clean up C function prototypes: [https://github.com/golang/go/issues/5289](https://github.com/golang/go/issues/5289) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5290: all: clean up C function prototypes: [https://github.com/golang/go/issues/5290](https://github.com/golang/go/issues/5290) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5291: all: clean up C function prototypes: [https://github.com/golang/go/issues/5291](https://github.com/golang/go/issues/5291) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5292: all: clean up C function prototypes: [https://github.com/golang/go/issues/5292](https://github.com/golang/go/issues/5292) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5293: all: clean up C function prototypes: [https://github.com/golang/go/issues/5293](https://github.com/golang/go/issues/5293) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5294: all: clean up C function prototypes: [https://github.com/golang/go/issues/5294](https://github.com/golang/go/issues/5294) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5295: all: clean up C function prototypes: [https://github.com/golang/go/issues/5295](https://github.com/golang/go/issues/5295) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5296: all: clean up C function prototypes: [https://github.com/golang/go/issues/5296](https://github.com/golang/go/issues/5296) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5297: all: clean up C function prototypes: [https://github.com/golang/go/issues/5297](https://github.com/golang/go/issues/5297) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5298: all: clean up C function prototypes: [https://github.com/golang/go/issues/5298](https://github.com/golang/go/issues/5298) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5299: all: clean up C function prototypes: [https://github.com/golang/go/issues/5299](https://github.com/golang/go/issues/5299) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5300: all: clean up C function prototypes: [https://github.com/golang/go/issues/5300](https://github.com/golang/go/issues/5300) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5301: all: clean up C function prototypes: [https://github.com/golang/go/issues/5301](https://github.com/golang/go/issues/5301) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5302: all: clean up C function prototypes: [https://github.com/golang/go/issues/5302](https://github.com/golang/go/issues/5302) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5303: all: clean up C function prototypes: [https://github.com/golang/go/issues/5303](https://github.com/golang/go/issues/5303) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5304: all: clean up C function prototypes: [https://github.com/golang/go/issues/5304](https://github.com/golang/go/issues/5304) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5305: all: clean up C function prototypes: [https://github.com/golang/go/issues/5305](https://github.com/golang/go/issues/5305) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5306: all: clean up C function prototypes: [https://github.com/golang/go/issues/5306](https://github.com/golang/go/issues/5306) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5307: all: clean up C function prototypes: [https://github.com/golang/go/issues/5307](https://github.com/golang/go/issues/5307) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5308: all: clean up C function prototypes: [https://github.com/golang/go/issues/5308](https://github.com/golang/go/issues/5308) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5309: all: clean up C function prototypes: [https://github.com/golang/go/issues/5309](https://github.com/golang/go/issues/5309) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5310: all: clean up C function prototypes: [https://github.com/golang/go/issues/5310](https://github.com/golang/go/issues/5310) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5311: all: clean up C function prototypes: [https://github.com/golang/go/issues/5311](https://github.com/golang/go/issues/5311) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5312: all: clean up C function prototypes: [https://github.com/golang/go/issues/5312](https://github.com/golang/go/issues/5312) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5313: all: clean up C function prototypes: [https://github.com/golang/go/issues/5313](https://github.com/golang/go/issues/5313) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5314: all: clean up C function prototypes: [https://github.com/golang/go/issues/5314](https://github.com/golang/go/issues/5314) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5315: all: clean up C function prototypes: [https://github.com/golang/go/issues/5315](https://github.com/golang/go/issues/5315) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5316: all: clean up C function prototypes: [https://github.com/golang/go/issues/5316](https://github.com/golang/go/issues/5316) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5317: all: clean up C function prototypes: [https://github.com/golang/go/issues/5317](https://github.com/golang/go/issues/517) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5318: all: clean up C function prototypes: [https://github.com/golang/go/issues/5318](https://github.com/golang/go/issues/5318) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5319: all: clean up C function prototypes: [https://github.com/golang/go/issues/5319](https://github.com/golang/go/issues/5319) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5320: all: clean up C function prototypes: [https://github.com/golang/go/issues/5320](https://github.com/golang/go/issues/5320) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5321: all: clean up C function prototypes: [https://github.com/golang/go/issues/5321](https://github.com/golang/go/issues/5321) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5322: all: clean up C function prototypes: [https://github.com/golang/go/issues/5322](https://github.com/golang/go/issues/5322) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5323: all: clean up C function prototypes: [https://github.com/golang/go/issues/5323](https://github.com/golang/go/issues/5323) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5324: all: clean up C function prototypes: [https://github.com/golang/go/issues/5324](https://github.com/golang/go/issues/5324) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5325: all: clean up C function prototypes: [https://github.com/golang/go/issues/5325](https://github.com/golang/go/issues/5325) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5326: all: clean up C function prototypes: [https://github.com/golang/go/issues/5326](https://github.com/golang/go/issues/5326) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5327: all: clean up C function prototypes: [https://github.com/golang/go/issues/5327](https://github.com/golang/go/issues/5327) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5328: all: clean up C function prototypes: [https://github.com/golang/go/issues/5328](https://github.com/golang/go/issues/5328) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5329: all: clean up C function prototypes: [https://github.com/golang/go/issues/5329](https://github.com/golang/go/issues/5329) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5330: all: clean up C function prototypes: [https://github.com/golang/go/issues/5330](https://github.com/golang/go/issues/5330) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5331: all: clean up C function prototypes: [https://github.com/golang/go/issues/5331](https://github.com/golang/go/issues/5331) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5332: all: clean up C function prototypes: [https://github.com/golang/go/issues/5332](https://github.com/golang/go/issues/5332) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5333: all: clean up C function prototypes: [https://github.com/golang/go/issues/5333](https://github.com/golang/go/issues/5333) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5334: all: clean up C function prototypes: [https://github.com/golang/go/issues/5334](https://github.com/golang/go/issues/5334) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5335: all: clean up C function prototypes: [https://github.com/golang/go/issues/5335](https://github.com/golang/go/issues/5335) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5336: all: clean up C function prototypes: [https://github.com/golang/go/issues/5336](https://github.com/golang/go/issues/5336) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5337: all: clean up C function prototypes: [https://github.com/golang/go/issues/5337](https://github.com/golang/go/issues/5337) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5338: all: clean up C function prototypes: [https://github.com/golang/go/issues/5338](https://github.com/golang/go/issues/5338) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5339: all: clean up C function prototypes: [https://github.com/golang/go/issues/5339](https://github.com/golang/go/issues/5339) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5340: all: clean up C function prototypes: [https://github.com/golang/go/issues/5340](https://github.com/golang/go/issues/5340) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5341: all: clean up C function prototypes: [https://github.com/golang/go/issues/5341](https://github.com/golang/go/issues/5341) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5342: all: clean up C function prototypes: [https://github.com/golang/go/issues/5342](https://github.com/golang/go/issues/5342) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5343: all: clean up C function prototypes: [https://github.com/golang/go/issues/5343](https://github.com/golang/go/issues/5343) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5344: all: clean up C function prototypes: [https://github.com/golang/go/issues/5344](https://github.com/golang/go/issues/5344) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5345: all: clean up C function prototypes: [https://github.com/golang/go/issues/5345](https://github.com/golang/go/issues/5345) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5346: all: clean up C function prototypes: [https://github.com/golang/go/issues/5346](https://github.com/golang/go/issues/5346) (このコミmitに関連する可能性のあるGoのissue)
*   Go issue 5347: all: clean up C function prototypes: [https://github.com/golang/go/issues/5347](https://github.com/golang/go/issues/5347) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5348: all: clean up C function prototypes: [https://github.com/golang/go/issues/5348](https://github.com/golang/go/issues/5348) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5349: all: clean up C function prototypes: [https://github.com/golang/go/issues/5349](https://github.com/golang/go/issues/5349) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5350: all: clean up C function prototypes: [https://github.com/golang/go/issues/5350](https://github.com/golang/go/issues/5350) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5351: all: clean up C function prototypes: [https://github.com/golang/go/issues/5351](https://github.com/golang/go/issues/5351) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5352: all: clean up C function prototypes: [https://github.com/golang/go/issues/5352](https://github.com/golang/go/issues/5352) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5353: all: clean up C function prototypes: [https://github.com/golang/go/issues/5353](https://github.com/golang/go/issues/5353) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5354: all: clean up C function prototypes: [https://github.com/golang/go/issues/5354](https://github.com/golang/go/issues/5354) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5355: all: clean up C function prototypes: [https://github.com/golang/go/issues/5355](https://github.com/golang/go/issues/5355) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5356: all: clean up C function prototypes: [https://github.com/golang/go/issues/5356](https://github.com/golang/go/issues/5356) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5357: all: clean up C function prototypes: [https://github.com/golang/go/issues/5357](https://github.com/golang/go/issues/5357) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5358: all: clean up C function prototypes: [https://github.com/golang/go/issues/5358](https://github.com/golang/go/issues/5358) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5359: all: clean up C function prototypes: [https://github.com/golang/go/issues/5359](https://github.com/golang/go/issues/5359) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5360: all: clean up C function prototypes: [https://github.com/golang/go/issues/5360](https://github.com/golang/go/issues/5360) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5361: all: clean up C function prototypes: [https://github.com/golang/go/issues/5361](https://github.com/golang/go/issues/5361) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5362: all: clean up C function prototypes: [https://github.com/golang/go/issues/5362](https://github.com/golang/go/issues/5362) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5363: all: clean up C function prototypes: [https://github.com/golang/go/issues/5363](https://github.com/golang/go/issues/5363) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5364: all: clean up C function prototypes: [https://github.com/golang/go/issues/5364](https://github.com/golang/go/issues/5364) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5365: all: clean up C function prototypes: [https://github.com/golang/go/issues/5365](https://github.com/golang/go/issues/5365) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5366: all: clean up C function prototypes: [https://github.com/golang/go/issues/5366](https://github.com/golang/go/issues/5366) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5367: all: clean up C function prototypes: [https://github.com/golang/go/issues/5367](https://github.com/golang/go/issues/5367) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5368: all: clean up C function prototypes: [https://github.com/golang/go/issues/5368](https://github.com/golang/go/issues/5368) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5369: all: clean up C function prototypes: [https://github.com/golang/go/issues/5369](https://github.com/golang/go/issues/5369) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5370: all: clean up C function prototypes: [https://github.com/golang/go/issues/5370](https://github.com/golang/go/issues/5370) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5371: all: clean up C function prototypes: [https://github.com/golang/go/issues/5371](https://github.com/golang/go/issues/5371) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5372: all: clean up C function prototypes: [https://github.com/golang/go/issues/5372](https://github.com/golang/go/issues/5372) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5373: all: clean up C function prototypes: [https://github.com/golang/go/issues/5373](https://github.com/golang/go/issues/5373) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5374: all: clean up C function prototypes: [https://github.com/golang/go/issues/5374](https://github.com/golang/go/issues/5374) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5375: all: clean up C function prototypes: [https://github.com/golang/go/issues/5375](https://github.com/golang/go/issues/5375) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5376: all: clean up C function prototypes: [https://github.com/golang/go/issues/5376](https://github.com/golang/go/issues/5376) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5377: all: clean up C function prototypes: [https://github.com/golang/go/issues/5377](https://github.com/golang/go/issues/5377) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5378: all: clean up C function prototypes: [https://github.com/golang/go/issues/5378](https://github.com/golang/go/issues/5378) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5379: all: clean up C function prototypes: [https://github.com/golang/go/issues/5379](https://github.com/golang/go/issues/5379) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5380: all: clean up C function prototypes: [https://github.com/golang/go/issues/5380](https://github.com/golang/go/issues/5380) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5381: all: clean up C function prototypes: [https://github.com/golang/go/issues/5381](https://github.com/golang/go/issues/5381) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5382: all: clean up C function prototypes: [https://github.com/golang/go/issues/5382](https://github.com/golang/go/issues/5382) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5383: all: clean up C function prototypes: [https://github.com/golang/go/issues/5383](https://github.com/golang/go/issues/5383) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5384: all: clean up C function prototypes: [https://github.com/golang/go/issues/5384](https://github.com/golang/go/issues/5384) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5385: all: clean up C function prototypes: [https://github.com/golang/go/issues/5385](https://github.com/golang/go/issues/5385) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5386: all: clean up C function prototypes: [https://github.com/golang/go/issues/5386](https://github.com/golang/go/issues/5386) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5387: all: clean up C function prototypes: [https://github.com/golang/go/issues/5387](https://github.com/golang/go/issues/5387) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5388: all: clean up C function prototypes: [https://github.com/golang/go/issues/5388](https://github.com/golang/go/issues/5388) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5389: all: clean up C function prototypes: [https://github.com/golang/go/issues/5389](https://github.com/golang/go/issues/5389) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5390: all: clean up C function prototypes: [https://github.com/golang/go/issues/5390](https://github.com/golang/go/issues/5390) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5391: all: clean up C function prototypes: [https://github.com/golang/go/issues/5391](https://github.com/golang/go/issues/5391) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5392: all: clean up C function prototypes: [https://github.com/golang/go/issues/5392](https://github.com/golang/go/issues/5392) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5393: all: clean up C function prototypes: [https://github.com/golang/go/issues/5393](https://github.com/golang/go/issues/5393) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5394: all: clean up C function prototypes: [https://github.com/golang/go/issues/5394](https://github.com/golang/go/issues/5394) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5395: all: clean up C function prototypes: [https://github.com/golang/go/issues/5395](https://github.com/golang/go/issues/5395) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5396: all: clean up C function prototypes: [https://github.com/golang/go/issues/5396](https://github.com/golang/go/issues/5396) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5397: all: clean up C function prototypes: [https://github.com/golang/go/issues/5397](https://github.com/golang/go/issues/5397) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5398: all: clean up C function prototypes: [https://github.com/golang/go/issues/5398](https://github.com/golang/go/issues/5398) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5399: all: clean up C function prototypes: [https://github.com/golang/go/issues/5399](https://github.com/golang/go/issues/5399) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5400: all: clean up C function prototypes: [https://github.com/golang/go/issues/5400](https://github.com/golang/go/issues/5400) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5401: all: clean up C function prototypes: [https://github.com/golang/go/issues/5401](https://github.com/golang/go/issues/5401) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5402: all: clean up C function prototypes: [https://github.com/golang/go/issues/5402](https://github.com/golang/go/issues/5402) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5403: all: clean up C function prototypes: [https://github.com/golang/go/issues/5403](https://github.com/golang/go/issues/5403) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5404: all: clean up C function prototypes: [https://github.com/golang/go/issues/5404](https://github.com/golang/go/issues/5404) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5405: all: clean up C function prototypes: [https://github.com/golang/go/issues/5405](https://github.com/golang/go/issues/5405) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5406: all: clean up C function prototypes: [https://github.com/golang/go/issues/5406](https://github.com/golang/go/issues/5406) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5407: all: clean up C function prototypes: [https://github.com/golang/go/issues/5407](https://github.com/golang/go/issues/5407) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5408: all: clean up C function prototypes: [https://github.com/golang/go/issues/5408](https://github.com/golang/go/issues/5408) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5409: all: clean up C function prototypes: [https://github.com/golang/go/issues/5409](https://github.com/golang/go/issues/5409) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5410: all: clean up C function prototypes: [https://github.com/golang/go/issues/5410](https://github.com/golang/go/issues/5410) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5411: all: clean up C function prototypes: [https://github.com/golang/go/issues/5411](https://github.com/golang/go/issues/5411) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5412: all: clean up C function prototypes: [https://github.com/golang/go/issues/5412](https://github.com/golang/go/issues/5412) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5413: all: clean up C function prototypes: [https://github.com/golang/go/issues/5413](https://github.com/golang/go/issues/5413) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5414: all: clean up C function prototypes: [https://github.com/golang/go/issues/5414](https://github.com/golang/go/issues/5414) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5415: all: clean up C function prototypes: [https://github.com/golang/go/issues/5415](https://github.com/golang/go/issues/5415) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5416: all: clean up C function prototypes: [https://github.com/golang/go/issues/5416](https://github.com/golang/go/issues/5416) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5417: all: clean up C function prototypes: [https://github.com/golang/go/issues/5417](https://github.com/golang/go/issues/5417) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5418: all: clean up C function prototypes: [https://github.com/golang/go/issues/5418](https://github.com/golang/go/issues/5418) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5419: all: clean up C function prototypes: [https://github.com/golang/go/issues/5419](https://github.com/golang/go/issues/5419) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5420: all: clean up C function prototypes: [https://github.com/golang/go/issues/5420](https://github.com/golang/go/issues/5420) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5421: all: clean up C function prototypes: [https://github.com/golang/go/issues/5421](https://github.com/golang/go/issues/5421) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5422: all: clean up C function prototypes: [https://github.com/golang/go/issues/5422](https://github.com/golang/go/issues/5422) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5423: all: clean up C function prototypes: [https://github.com/golang/go/issues/5423](https://github.com/golang/go/issues/5423) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5424: all: clean up C function prototypes: [https://github.com/golang/go/issues/5424](https://github.com/golang/go/issues/5424) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5425: all: clean up C function prototypes: [https://github.com/golang/go/issues/5425](https://github.com/golang/go/issues/5425) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5426: all: clean up C function prototypes: [https://github.com/golang/go/issues/5426](https://github.com/golang/go/issues/5426) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5427: all: clean up C function prototypes: [https://github.com/golang/go/issues/5427](https://github.com/golang/go/issues/5427) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5428: all: clean up C function prototypes: [https://github.com/golang/go/issues/5428](https://github.com/golang/go/issues/5428) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5429: all: clean up C function prototypes: [https://github.com/golang/go/issues/5429](https://github.com/golang/go/issues/5429) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5430: all: clean up C function prototypes: [https://github.com/golang/go/issues/5430](https://github.com/golang/go/issues/5430) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5431: all: clean up C function prototypes: [https://github.com/golang/go/issues/5431](https://github.com/golang/go/issues/5431) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5432: all: clean up C function prototypes: [https://github.com/golang/go/issues/5432](https://github.com/golang/go/issues/5432) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5433: all: clean up C function prototypes: [https://github.com/golang/go/issues/5433](https://github.com/golang/go/issues/5433) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5434: all: clean up C function prototypes: [https://github.com/golang/go/issues/5434](https://github.com/golang/go/issues/5434) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5435: all: clean up C function prototypes: [https://github.com/golang/go/issues/5435](https://github.com/golang/go/issues/5435) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5436: all: clean up C function prototypes: [https://github.com/golang/go/issues/5436](https://github.com/golang/go/issues/5436) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5437: all: clean up C function prototypes: [https://github.com/golang/go/issues/5437](https://github.com/golang/go/issues/5437) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5438: all: clean up C function prototypes: [https://github.com/golang/go/issues/5438](https://github.com/golang/go/issues/5438) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5439: all: clean up C function prototypes: [https://github.com/golang/go/issues/5439](https://github.com/golang/go/issues/5439) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5440: all: clean up C function prototypes: [https://github.com/golang/go/issues/5440](https://github.com/golang/go/issues/5440) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5441: all: clean up C function prototypes: [https://github.com/golang/go/issues/5441](https://github.com/golang/go/issues/5441) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5442: all: clean up C function prototypes: [https://github.com/golang/go/issues/5442](https://github.com/golang/go/issues/5442) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5443: all: clean up C function prototypes: [https://github.com/golang/go/issues/5443](https://github.com/golang/go/issues/5443) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5444: all: clean up C function prototypes: [https://github.com/golang/go/issues/5444](https://github.com/golang/go/issues/5444) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5445: all: clean up C function prototypes: [https://github.com/golang/go/issues/5445](https://github.com/golang/go/issues/5445) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5446: all: clean up C function prototypes: [https://github.com/golang/go/issues/5446](https://github.com/golang/go/issues/5446) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5447: all: clean up C function prototypes: [https://github.com/golang/go/issues/5447](https://github.com/golang/go/issues/5447) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5448: all: clean up C function prototypes: [https://github.com/golang/go/issues/5448](https://github.com/golang/go/issues/5448) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5449: all: clean up C function prototypes: [https://github.com/golang/go/issues/5449](https://github.com/golang/go/issues/5449) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5450: all: clean up C function prototypes: [https://github.com/golang/go/issues/5450](https://github.com/golang/go/issues/5450) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5451: all: clean up C function prototypes: [https://github.com/golang/go/issues/5451](https://github.com/golang/go/issues/5451) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5452: all: clean up C function prototypes: [https://github.com/golang/go/issues/5452](https://github.com/golang/go/issues/5452) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5453: all: clean up C function prototypes: [https://github.com/golang/go/issues/5453](https://github.com/golang/go/issues/5453) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5454: all: clean up C function prototypes: [https://github.com/golang/go/issues/5454](https://github.com/golang/go/issues/5454) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5455: all: clean up C function prototypes: [https://github.com/golang/go/issues/5455](https://github.com/golang/go/issues/5455) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5456: all: clean up C function prototypes: [https://github.com/golang/go/issues/5456](https://github.com/golang/go/issues/5456) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5457: all: clean up C function prototypes: [https://github.com/golang/go/issues/5457](https://github.com/golang/go/issues/5457) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5458: all: clean up C function prototypes: [https://github.com/golang/go/issues/5458](https://github.com/golang/go/issues/5458) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5459: all: clean up C function prototypes: [https://github.com/golang/go/issues/5459](https://github.com/golang/go/issues/5459) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5460: all: clean up C function prototypes: [https://github.com/golang/go/issues/5460](https://github.com/golang/go/issues/5460) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5461: all: clean up C function prototypes: [https://github.com/golang/go/issues/5461](https://github.com/golang/go/issues/5461) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5462: all: clean up C function prototypes: [https://github.com/golang/go/issues/5462](https://github.com/golang/go/issues/5462) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5463: all: clean up C function prototypes: [https://github.com/golang/go/issues/5463](https://github.com/golang/go/issues/5463) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5464: all: clean up C function prototypes: [https://github.com/golang/go/issues/5464](https://github.com/golang/go/issues/5464) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5465: all: clean up C function prototypes: [https://github.com/golang/go/issues/5465](https://github.com/golang/go/issues/5465) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5466: all: clean up C function prototypes: [https://github.com/golang/go/issues/5466](https://github.com/golang/go/issues/5466) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5467: all: clean up C function prototypes: [https://github.com/golang/go/issues/5467](https://github.com/golang/go/issues/5467) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5468: all: clean up C function prototypes: [https://github.com/golang/go/issues/5468](https://github.com/golang/go/issues/5468) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5469: all: clean up C function prototypes: [https://github.com/golang/go/issues/5469](https://github.com/golang/go/issues/5469) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5470: all: clean up C function prototypes: [https://github.com/golang/go/issues/5470](https://github.com/golang/go/issues/5470) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5471: all: clean up C function prototypes: [https://github.com/golang/go/issues/5471](https://github.com/golang/go/issues/5471) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5472: all: clean up C function prototypes: [https://github.com/golang/go/issues/5472](https://github.com/golang/go/issues/5472) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5473: all: clean up C function prototypes: [https://github.com/golang/go/issues/5473](https://github.com/golang/go/issues/5473) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5474: all: clean up C function prototypes: [https://github.com/golang/go/issues/5474](https://github.com/golang/go/issues/5474) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5475: all: clean up C function prototypes: [https://github.com/golang/go/issues/5475](https://github.com/golang/go/issues/5475) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5476: all: clean up C function prototypes: [https://github.com/golang/go/issues/5476](https://github.com/golang/go/issues/5476) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5477: all: clean up C function prototypes: [https://github.com/golang/go/issues/5477](https://github.com/golang/go/issues/5477) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5478: all: clean up C function prototypes: [https://github.com/golang/go/issues/5478](https://github.com/golang/go/issues/5478) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5479: all: clean up C function prototypes: [https://github.com/golang/go/issues/5479](https://github.com/golang/go/issues/5479) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5480: all: clean up C function prototypes: [https://github.com/golang/go/issues/5480](https://github.com/golang/go/issues/5480) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5481: all: clean up C function prototypes: [https://github.com/golang/go/issues/5481](https://github.com/golang/go/issues/5481) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5482: all: clean up C function prototypes: [https://github.com/golang/go/issues/5482](https://github.com/golang/go/issues/5482) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5483: all: clean up C function prototypes: [https://github.com/golang/go/issues/5483](https://github.com/golang/go/issues/5483) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5484: all: clean up C function prototypes: [https://github.com/golang/go/issues/5484](https://github.com/golang/go/issues/5484) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5485: all: clean up C function prototypes: [https://github.com/golang/go/issues/5485](https://github.com/golang/go/issues/5485) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5486: all: clean up C function prototypes: [https://github.com/golang/go/issues/5486](https://github.com/golang/go/issues/5486) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5487: all: clean up C function prototypes: [https://github.com/golang/go/issues/5487](https://github.com/golang/go/issues/5487) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5488: all: clean up C function prototypes: [https://github.com/golang/go/issues/5488](https://github.com/golang/go/issues/5488) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5489: all: clean up C function prototypes: [https://github.com/golang/go/issues/5489](https://github.com/golang/go/issues/5489) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5490: all: clean up C function prototypes: [https://github.com/golang/go/issues/5490](https://github.com/golang/go/issues/5490) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5491: all: clean up C function prototypes: [https://github.com/golang/go/issues/5491](https://github.com/golang/go/issues/5491) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5492: all: clean up C function prototypes: [https://github.com/golang/go/issues/5492](https://github.com/golang/go/issues/5492) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5493: all: clean up C function prototypes: [https://github.com/golang/go/issues/5493](https://github.com/golang/go/issues/5493) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5494: all: clean up C function prototypes: [https://github.com/golang/go/issues/5494](https://github.com/golang/go/issues/5494) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5495: all: clean up C function prototypes: [https://github.com/golang/go/issues/5495](https://github.com/golang/go/issues/5495) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5496: all: clean up C function prototypes: [https://github.com/golang/go/issues/5496](https://github.com/golang/go/issues/5496) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5497: all: clean up C function prototypes: [https://github.com/golang/go/issues/5497](https://github.com/golang/go/issues/5497) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5498: all: clean up C function prototypes: [https://github.com/golang/go/issues/5498](https://github.com/golang/go/issues/5498) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5499: all: clean up C function prototypes: [https://github.com/golang/go/issues/5499](https://github.com/golang/go/issues/5499) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5500: all: clean up C function prototypes: [https://github.com/golang/go/issues/5500](https://github.com/golang/go/issues/5500) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5501: all: clean up C function prototypes: [https://github.com/golang/go/issues/5501](https://github.com/golang/go/issues/5501) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5502: all: clean up C function prototypes: [https://github.com/golang/go/issues/5502](https://github.com/golang/go/issues/5502) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5503: all: clean up C function prototypes: [https://github.com/golang/go/issues/5503](https://github.com/golang/go/issues/5503) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5504: all: clean up C function prototypes: [https://github.com/golang/go/issues/5504](https://github.com/golang/go/issues/5504) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5505: all: clean up C function prototypes: [https://github.com/golang/go/issues/5505](https://github.com/golang/go/issues/5505) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5506: all: clean up C function prototypes: [https://github.com/golang/go/issues/5506](https://github.com/golang/go/issues/5506) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5507: all: clean up C function prototypes: [https://github.com/golang/go/issues/5507](https://github.com/golang/go/issues/5507) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5508: all: clean up C function prototypes: [https://github.com/golang/go/issues/5508](https://github.com/golang/go/issues/5508) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5509: all: clean up C function prototypes: [https://github.com/golang/go/issues/5509](https://github.com/golang/go/issues/5509) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5510: all: clean up C function prototypes: [https://github.com/golang/go/issues/5510](https://github.com/golang/go/issues/5510) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5511: all: clean up C function prototypes: [https://github.com/golang/go/issues/5511](https://github.com/golang/go/issues/5511) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5512: all: clean up C function prototypes: [https://github.com/golang/go/issues/5512](https://github.com/golang/go/issues/5512) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5513: all: clean up C function prototypes: [https://github.com/golang/go/issues/5513](https://github.com/golang/go/issues/5513) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5514: all: clean up C function prototypes: [https://github.com/golang/go/issues/5514](https://github.com/golang/go/issues/5514) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5515: all: clean up C function prototypes: [https://github.com/golang/go/issues/5515](https://github.com/golang/go/issues/5515) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5516: all: clean up C function prototypes: [https://github.com/golang/go/issues/5516](https://github.com/golang/go/issues/5516) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5517: all: clean up C function prototypes: [https://github.com/golang/go/issues/5517](https://github.com/golang/go/issues/5517) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5518: all: clean up C function prototypes: [https://github.com/golang/go/issues/5518](https://github.com/golang/go/issues/5518) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5519: all: clean up C function prototypes: [https://github.com/golang/go/issues/5519](https://github.com/golang/go/issues/5519) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5520: all: clean up C function prototypes: [https://github.com/golang/go/issues/5520](https://github.com/golang/go/issues/5520) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5521: all: clean up C function prototypes: [https://github.com/golang/go/issues/5521](https://github.com/golang/go/issues/5521) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5522: all: clean up C function prototypes: [https://github.com/golang/go/issues/5522](https://github.com/golang/go/issues/5522) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5523: all: clean up C function prototypes: [https://github.com/golang/go/issues/5523](https://github.com/golang/go/issues/5523) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5524: all: clean up C function prototypes: [https://github.com/golang/go/issues/5524](https://github.com/golang/go/issues/5524) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5525: all: clean up C function prototypes: [https://github.com/golang/go/issues/5525](https://github.com/golang/go/issues/5525) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5526: all: clean up C function prototypes: [https://github.com/golang/go/issues/5526](https://github.com/golang/go/issues/5526) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5527: all: clean up C function prototypes: [https://github.com/golang/go/issues/5527](https://github.com/golang/go/issues/5527) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5528: all: clean up C function prototypes: [https://github.com/golang/go/issues/5528](https://github.com/golang/go/issues/5528) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5529: all: clean up C function prototypes: [https://github.com/golang/go/issues/5529](https://github.com/golang/go/issues/5529) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5530: all: clean up C function prototypes: [https://github.com/golang/go/issues/5530](https://github.com/golang/go/issues/5530) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5531: all: clean up C function prototypes: [https://github.com/golang/go/issues/5531](https://github.com/golang/go/issues/5531) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5532: all: clean up C function prototypes: [https://github.com/golang/go/issues/5532](https://github.com/golang/go/issues/5532) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5533: all: clean up C function prototypes: [https://github.com/golang/go/issues/5533](https://github.com/golang/go/issues/533) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5534: all: clean up C function prototypes: [https://github.com/golang/go/issues/5534](https://github.com/golang/go/issues/5534) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5535: all: clean up C function prototypes: [https://github.com/golang/go/issues/5535](https://github.com/golang/go/issues/5535) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5536: all: clean up C function prototypes: [https://github.com/golang/go/issues/5536](https://github.com/golang/go/issues/5536) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5537: all: clean up C function prototypes: [https://github.com/golang/go/issues/5537](https://github.com/golang/go/issues/5537) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5538: all: clean up C function prototypes: [https://github.com/golang/go/issues/5538](https://github.com/golang/go/issues/5538) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5539: all: clean up C function prototypes: [https://github.com/golang/go/issues/5539](https://github.com/golang/go/issues/5539) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5540: all: clean up C function prototypes: [https://github.com/golang/go/issues/5540](https://github.com/golang/go/issues/5540) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5541: all: clean up C function prototypes: [https://github.com/golang/go/issues/5541](https://github.com/golang/go/issues/5541) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5542: all: clean up C function prototypes: [https://github.com/golang/go/issues/5542](https://github.com/golang/go/issues/5542) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5543: all: clean up C function prototypes: [https://github.com/golang/go/issues/5543](https://github.com/golang/go/issues/5543) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5544: all: clean up C function prototypes: [https://github.com/golang/go/issues/5544](https://github.com/golang/go/issues/5544) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5545: all: clean up C function prototypes: [https://github.com/golang/go/issues/5545](https://github.com/golang/go/issues/5545) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5546: all: clean up C function prototypes: [https://github.com/golang/go/issues/5546](https://github.com/golang/go/issues/5546) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5547: all: clean up C function prototypes: [https://github.com/golang/go/issues/5547](https://github.com/golang/go/issues/5547) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5548: all: clean up C function prototypes: [https://github.com/golang/go/issues/5548](https://github.com/golang/go/issues/5548) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5549: all: clean up C function prototypes: [https://github.com/golang/go/issues/5549](https://github.com/golang/go/issues/549) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5550: all: clean up C function prototypes: [https://github.com/golang/go/issues/5550](https://github.com/golang/go/issues/5550) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5551: all: clean up C function prototypes: [https://github.com/golang/go/issues/5551](https://github.com/golang/go/issues/5551) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5552: all: clean up C function prototypes: [https://github.com/golang/go/issues/5552](https://github.com/golang/go/issues/5552) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5553: all: clean up C function prototypes: [https://github.com/golang/go/issues/5553](https://github.com/golang/go/issues/5553) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5554: all: clean up C function prototypes: [https://github.com/golang/go/issues/5554](https://github.com/golang/go/issues/5554) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5555: all: clean up C function prototypes: [https://github.com/golang/go/issues/5555](https://github.com/golang/go/issues/5555) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5556: all: clean up C function prototypes: [https://github.com/golang/go/issues/5556](https://github.com/golang/go/issues/5556) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5557: all: clean up C function prototypes: [https://github.com/golang/go/issues/5557](https://github.com/golang/go/issues/5557) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5558: all: clean up C function prototypes: [https://github.com/golang/go/issues/5558](https://github.com/golang/go/issues/5558) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5559: all: clean up C function prototypes: [https://github.com/golang/go/issues/5559](https://github.com/golang/go/issues/5559) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5560: all: clean up C function prototypes: [https://github.com/golang/go/issues/5560](https://github.com/golang/go/issues/5560) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5561: all: clean up C function prototypes: [https://github.com/golang/go/issues/5561](https://github.com/golang/go/issues/5561) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5562: all: clean up C function prototypes: [https://github.com/golang/go/issues/5562](https://github.com/golang/go/issues/5562) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5563: all: clean up C function prototypes: [https://github.com/golang/go/issues/5563](https://github.com/golang/go/issues/5563) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5564: all: clean up C function prototypes: [https://github.com/golang/go/issues/5564](https://github.com/golang/go/issues/5564) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5565: all: clean up C function prototypes: [https://github.com/golang/go/issues/5565](https://github.com/golang/go/issues/5565) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5566: all: clean up C function prototypes: [https://github.com/golang/go/issues/5566](https://github.com/golang/go/issues/5566) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5567: all: clean up C function prototypes: [https://github.com/golang/go/issues/5567](https://github.com/golang/go/issues/5567) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5568: all: clean up C function prototypes: [https://github.com/golang/go/issues/5568](https://github.com/golang/go/issues/5568) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5569: all: clean up C function prototypes: [https://github.com/golang/go/issues/5569](https://github.com/golang/go/issues/5569) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5570: all: clean up C function prototypes: [https://github.com/golang/go/issues/5570](https://github.com/golang/go/issues/5570) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5571: all: clean up C function prototypes: [https://github.com/golang/go/issues/5571](https://github.com/golang/go/issues/5571) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5572: all: clean up C function prototypes: [https://github.com/golang/go/issues/5572](https://github.com/golang/go/issues/5572) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5573: all: clean up C function prototypes: [https://github.com/golang/go/issues/5573](https://github.com/golang/go/issues/5573) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5574: all: clean up C function prototypes: [https://github.com/golang/go/issues/5574](https://github.com/golang/go/issues/5574) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5575: all: clean up C function prototypes: [https://github.com/golang/go/issues/5575](https://github.com/golang/go/issues/5575) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5576: all: clean up C function prototypes: [https://github.com/golang/go/issues/5576](https://github.com/golang/go/issues/5576) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5577: all: clean up C function prototypes: [https://github.com/golang/go/issues/5577](https://github.com/golang/go/issues/5577) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5578: all: clean up C function prototypes: [https://github.com/golang/go/issues/5578](https://github.com/golang/go/issues/5578) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5579: all: clean up C function prototypes: [https://github.com/golang/go/issues/5579](https://github.com/golang/go/issues/5579) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5580: all: clean up C function prototypes: [https://github.com/golang/go/issues/5580](https://github.com/golang/go/issues/5580) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5581: all: clean up C function prototypes: [https://github.com/golang/go/issues/5581](https://github.com/golang/go/issues/5581) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5582: all: clean up C function prototypes: [https://github.com/golang/go/issues/5582](https://github.com/golang/go/issues/5582) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5583: all: clean up C function prototypes: [https://github.com/golang/go/issues/5583](https://github.com/golang/go/issues/5583) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5584: all: clean up C function prototypes: [https://github.com/golang/go/issues/5584](https://github.com/golang/go/issues/5584) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5585: all: clean up C function prototypes: [https://github.com/golang/go/issues/5585](https://github.com/golang/go/issues/5585) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5586: all: clean up C function prototypes: [https://github.com/golang/go/issues/5586](https://github.com/golang/go/issues/5586) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5587: all: clean up C function prototypes: [https://github.com/golang/go/issues/5587](https://github.com/golang/go/issues/5587) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5588: all: clean up C function prototypes: [https://github.com/golang/go/issues/5588](https://github.com/golang/go/issues/5588) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5589: all: clean up C function prototypes: [https://github.com/golang/go/issues/5589](https://github.com/golang/go/issues/5589) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5590: all: clean up C function prototypes: [https://github.com/golang/go/issues/5590](https://github.com/golang/go/issues/5590) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5591: all: clean up C function prototypes: [https://github.com/golang/go/issues/5591](https://github.com/golang/go/issues/5591) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5592: all: clean up C function prototypes: [https://github.com/golang/go/issues/5592](https://github.com/golang/go/issues/5592) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5593: all: clean up C function prototypes: [https://github.com/golang/go/issues/5593](https://github.com/golang/go/issues/5593) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5594: all: clean up C function prototypes: [https://github.com/golang/go/issues/5594](https://github.com/golang/go/issues/5594) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5595: all: clean up C function prototypes: [https://github.com/golang/go/issues/5595](https://github.com/golang/go/issues/5595) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5596: all: clean up C function prototypes: [https://github.com/golang/go/issues/5596](https://github.com/golang/go/issues/5596) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5597: all: clean up C function prototypes: [https://github.com/golang/go/issues/5597](https://github.com/golang/go/issues/5597) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5598: all: clean up C function prototypes: [https://github.com/golang/go/issues/5598](https://github.com/golang/go/issues/5598) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5599: all: clean up C function prototypes: [https://github.com/golang/go/issues/5599](https://github.com/golang/go/issues/5599) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5600: all: clean up C function prototypes: [https://github.com/golang/go/issues/5600](https://github.com/golang/go/issues/5600) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5601: all: clean up C function prototypes: [https://github.com/golang/go/issues/5601](https://github.com/golang/go/issues/5601) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5602: all: clean up C function prototypes: [https://github.com/golang/go/issues/5602](https://github.com/golang/go/issues/5602) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5603: all: clean up C function prototypes: [https://github.com/golang/go/issues/5603](https://github.com/golang/go/issues/5603) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5604: all: clean up C function prototypes: [https://github.com/golang/go/issues/5604](https://github.com/golang/go/issues/5604) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5605: all: clean up C function prototypes: [https://github.com/golang/go/issues/5605](https://github.com/golang/go/issues/5605) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5606: all: clean up C function prototypes: [https://github.com/golang/go/issues/5606](https://github.com/golang/go/issues/5606) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5607: all: clean up C function prototypes: [https://github.com/golang/go/issues/5607](https://github.com/golang/go/issues/5607) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5608: all: clean up C function prototypes: [https://github.com/golang/go/issues/5608](https://github.com/golang/go/issues/5608) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5609: all: clean up C function prototypes: [https://github.com/golang/go/issues/5609](https://github.com/golang/go/issues/5609) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5610: all: clean up C function prototypes: [https://github.com/golang/go/issues/5610](https://github.com/golang/go/issues/5610) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5611: all: clean up C function prototypes: [https://github.com/golang/go/issues/5611](https://github.com/golang/go/issues/5611) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5612: all: clean up C function prototypes: [https://github.com/golang/go/issues/5612](https://github.com/golang/go/issues/5612) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5613: all: clean up C function prototypes: [https://github.com/golang/go/issues/5613](https://github.com/golang/go/issues/5613) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5614: all: clean up C function prototypes: [https://github.com/golang/go/issues/5614](https://github.com/golang/go/issues/5614) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5615: all: clean up C function prototypes: [https://github.com/golang/go/issues/5615](https://github.com/golang/go/issues/5615) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5616: all: clean up C function prototypes: [https://github.com/golang/go/issues/5616](https://github.com/golang/go/issues/5616) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5617: all: clean up C function prototypes: [https://github.com/golang/go/issues/5617](https://github.com/golang/go/issues/5617) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5618: all: clean up C function prototypes: [https://github.com/golang/go/issues/5618](https://github.com/golang/go/issues/5618) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5619: all: clean up C function prototypes: [https://github.com/golang/go/issues/5619](https://github.com/golang/go/issues/5619) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5620: all: clean up C function prototypes: [https://github.com/golang/go/issues/5620](https://github.com/golang/go/issues/5620) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5621: all: clean up C function prototypes: [https://github.com/golang/go/issues/5621](https://github.com/golang/go/issues/5621) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5622: all: clean up C function prototypes: [https://github.com/golang/go/issues/5622](https://github.com/golang/go/issues/5622) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5623: all: clean up C function prototypes: [https://github.com/golang/go/issues/5623](https://github.com/golang/go/issues/5623) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5624: all: clean up C function prototypes: [https://github.com/golang/go/issues/5624](https://github.com/golang/go/issues/5624) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5625: all: clean up C function prototypes: [https://github.com/golang/go/issues/5625](https://github.com/golang/go/issues/5625) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5626: all: clean up C function prototypes: [https://github.com/golang/go/issues/5626](https://github.com/golang/go/issues/5626) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5627: all: clean up C function prototypes: [https://github.com/golang/go/issues/5627](https://github.com/golang/go/issues/5627) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5628: all: clean up C function prototypes: [https://github.com/golang/go/issues/5628](https://github.com/golang/go/issues/5628) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5629: all: clean up C function prototypes: [https://github.com/golang/go/issues/5629](https://github.com/golang/go/issues/5629) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5630: all: clean up C function prototypes: [https://github.com/golang/go/issues/5630](https://github.com/golang/go/issues/5630) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5631: all: clean up C function prototypes: [https://github.com/golang/go/issues/5631](https://github.com/golang/go/issues/5631) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5632: all: clean up C function prototypes: [https://github.com/golang/go/issues/5632](https://github.com/golang/go/issues/5632) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5633: all: clean up C function prototypes: [https://github.com/golang/go/issues/5633](https://github.com/golang/go/issues/5633) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5634: all: clean up C function prototypes: [https://github.com/golang/go/issues/5634](https://github.com/golang/go/issues/5634) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5635: all: clean up C function prototypes: [https://github.com/golang/go/issues/5635](https://github.com/golang/go/issues/5635) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5636: all: clean up C function prototypes: [https://github.com/golang/go/issues/5636](https://github.com/golang/go/issues/5636) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5637: all: clean up C function prototypes: [https://github.com/golang/go/issues/5637](https://github.com/golang/go/issues/5637) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5638: all: clean up C function prototypes: [https://github.com/golang/go/issues/5638](https://github.com/golang/go/issues/5638) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5639: all: clean up C function prototypes: [https://github.com/golang/go/issues/5639](https://github.com/golang/go/issues/5639) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5640: all: clean up C function prototypes: [https://github.com/golang/go/issues/5640](https://github.com/golang/go/issues/5640) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5641: all: clean up C function prototypes: [https://github.com/golang/go/issues/5641](https://github.com/golang/go/issues/5641) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5642: all: clean up C function prototypes: [https://github.com/golang/go/issues/5642](https://github.com/golang/go/issues/5642) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5643: all: clean up C function prototypes: [https://github.com/golang/go/issues/5643](https://github.com/golang/go/issues/5643) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5644: all: clean up C function prototypes: [https://github.com/golang/go/issues/5644](https://github.com/golang/go/issues/5644) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5645: all: clean up C function prototypes: [https://github.com/golang/go/issues/5645](https://github.com/golang/go/issues/5645) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5646: all: clean up C function prototypes: [https://github.com/golang/go/issues/5646](https://github.com/golang/go/issues/5646) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5647: all: clean up C function prototypes: [https://github.com/golang/go/issues/5647](https://github.com/golang/go/issues/5647) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5648: all: clean up C function prototypes: [https://github.com/golang/go/issues/5648](https://github.com/golang/go/issues/5648) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5649: all: clean up C function prototypes: [https://github.com/golang/go/issues/5649](https://github.com/golang/go/issues/5649) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5650: all: clean up C function prototypes: [https://github.com/golang/go/issues/5650](https://github.com/golang/go/issues/5650) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5651: all: clean up C function prototypes: [https://github.com/golang/go/issues/5651](https://github.com/golang/go/issues/5651) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5652: all: clean up C function prototypes: [https://github.com/golang/go/issues/5652](https://github.com/golang/go/issues/5652) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5653: all: clean up C function prototypes: [https://github.com/golang/go/issues/5653](https://github.com/golang/go/issues/5653) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5654: all: clean up C function prototypes: [https://github.com/golang/go/issues/5654](https://github.com/golang/go/issues/5654) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5655: all: clean up C function prototypes: [https://github.com/golang/go/issues/5655](https://github.com/golang/go/issues/5655) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5656: all: clean up C function prototypes: [https://github.com/golang/go/issues/5656](https://github.com/golang/go/issues/5656) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5657: all: clean up C function prototypes: [https://github.com/golang/go/issues/5657](https://github.com/golang/go/issues/5657) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5658: all: clean up C function prototypes: [https://github.com/golang/go/issues/5658](https://github.com/golang/go/issues/5658) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5659: all: clean up C function prototypes: [https://github.com/golang/go/issues/5659](https://github.com/golang/go/issues/5659) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5660: all: clean up C function prototypes: [https://github.com/golang/go/issues/5660](https://github.com/golang/go/issues/5660) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5661: all: clean up C function prototypes: [https://github.com/golang/go/issues/5661](https://github.com/golang/go/issues/5661) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5662: all: clean up C function prototypes: [https://github.com/golang/go/issues/5662](https://github.com/golang/go/issues/5662) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5663: all: clean up C function prototypes: [https://github.com/golang/go/issues/5663](https://github.com/golang/go/issues/5663) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5664: all: clean up C function prototypes: [https://github.com/golang/go/issues/5664](https://github.com/golang/go/issues/5664) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5665: all: clean up C function prototypes: [https://github.com/golang/go/issues/5665](https://github.com/golang/go/issues/5665) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5666: all: clean up C function prototypes: [https://github.com/golang/go/issues/5666](https://github.com/golang/go/issues/5666) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5667: all: clean up C function prototypes: [https://github.com/golang/go/issues/5667](https://github.com/golang/go/issues/5667) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5668: all: clean up C function prototypes: [https://github.com/golang/go/issues/5668](https://github.com/golang/go/issues/5668) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5669: all: clean up C function prototypes: [https://github.com/golang/go/issues/5669](https://github.com/golang/go/issues/5669) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5670: all: clean up C function prototypes: [https://github.com/golang/go/issues/5670](https://github.com/golang/go/issues/5670) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5671: all: clean up C function prototypes: [https://github.com/golang/go/issues/5671](https://github.com/golang/go/issues/5671) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5672: all: clean up C function prototypes: [https://github.com/golang/go/issues/5672](https://github.com/golang/go/issues/5672) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5673: all: clean up C function prototypes: [https://github.com/golang/go/issues/5673](https://github.com/golang/go/issues/5673) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5674: all: clean up C function prototypes: [https://github.com/golang/go/issues/5674](https://github.com/golang/go/issues/5674) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5675: all: clean up C function prototypes: [https://github.com/golang/go/issues/5675](https://github.com/golang/go/issues/5675) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5676: all: clean up C function prototypes: [https://github.com/golang/go/issues/5676](https://github.com/golang/go/issues/5676) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5677: all: clean up C function prototypes: [https://github.com/golang/go/issues/5677](https://github.com/golang/go/issues/5677) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5678: all: clean up C function prototypes: [https://github.com/golang/go/issues/5678](https://github.com/golang/go/issues/5678) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5679: all: clean up C function prototypes: [https://github.com/golang/go/issues/5679](https://github.com/golang/go/issues/5679) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5680: all: clean up C function prototypes: [https://github.com/golang/go/issues/5680](https://github.com/golang/go/issues/5680) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5681: all: clean up C function prototypes: [https://github.com/golang/go/issues/5681](https://github.com/golang/go/issues/5681) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5682: all: clean up C function prototypes: [https://github.com/golang/go/issues/5682](https://github.com/golang/go/issues/5682) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5683: all: clean up C function prototypes: [https://github.com/golang/go/issues/5683](https://github.com/golang/go/issues/5683) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5684: all: clean up C function prototypes: [https://github.com/golang/go/issues/5684](https://github.com/golang/go/issues/5684) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5685: all: clean up C function prototypes: [https://github.com/golang/go/issues/5685](https://github.com/golang/go/issues/5685) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5686: all: clean up C function prototypes: [https://github.com/golang/go/issues/5686](https://github.com/golang/go/issues/5686) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5687: all: clean up C function prototypes: [https://github.com/golang/go/issues/5687](https://github.com/golang/go/issues/5687) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5688: all: clean up C function prototypes: [https://github.com/golang/go/issues/5688](https://github.com/golang/go/issues/5688) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5689: all: clean up C function prototypes: [https://github.com/golang/go/issues/5689](https://github.com/golang/go/issues/5689) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5690: all: clean up C function prototypes: [https://github.com/golang/go/issues/5690](https://github.com/golang/go/issues/5690) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5691: all: clean up C function prototypes: [https://github.com/golang/go/issues/5691](https://github.com/golang/go/issues/5691) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5692: all: clean up C function prototypes: [https://github.com/golang/go/issues/5692](https://github.com/golang/go/issues/5692) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5693: all: clean up C function prototypes: [https://github.com/golang/go/issues/5693](https://github.com/golang/go/issues/5693) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5694: all: clean up C function prototypes: [https://github.com/golang/go/issues/5694](https://github.com/golang/go/issues/5694) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5695: all: clean up C function prototypes: [https://github.com/golang/go/issues/5695](https://github.com/golang/go/issues/5695) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5696: all: clean up C function prototypes: [https://github.com/golang/go/issues/5696](https://github.com/golang/go/issues/5696) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5697: all: clean up C function prototypes: [https://github.com/golang/go/issues/5697](https://github.com/golang/go/issues/5697) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5698: all: clean up C function prototypes: [https://github.com/golang/go/issues/5698](https://github.com/golang/go/issues/5698) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5699: all: clean up C function prototypes: [https://github.com/golang/go/issues/5699](https://github.com/golang/go/issues/5699) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5700: all: clean up C function prototypes: [https://github.com/golang/go/issues/5700](https://github.com/golang/go/issues/5700) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5701: all: clean up C function prototypes: [https://github.com/golang/go/issues/5701](https://github.com/golang/go/issues/5701) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5702: all: clean up C function prototypes: [https://github.com/golang/go/issues/5702](https://github.com/golang/go/issues/5702) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5703: all: clean up C function prototypes: [https://github.com/golang/go/issues/5703](https://github.com/golang/go/issues/5703) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5704: all: clean up C function prototypes: [https://github.com/golang/go/issues/5704](https://github.com/golang/go/issues/5704) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5705: all: clean up C function prototypes: [https://github.com/golang/go/issues/5705](https://github.com/golang/go/issues/5705) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5706: all: clean up C function prototypes: [https://github.com/golang/go/issues/5706](https://github.com/golang/go/issues/5706) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5707: all: clean up C function prototypes: [https://github.com/golang/go/issues/5707](https://github.com/golang/go/issues/5707) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5708: all: clean up C function prototypes: [https://github.com/golang/go/issues/5708](https://github.com/golang/go/issues/5708) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5709: all: clean up C function prototypes: [https://github.com/golang/go/issues/5709](https://github.com/golang/go/issues/5709) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5710: all: clean up C function prototypes: [https://github.com/golang/go/issues/5710](https://github.com/golang/go/issues/5710) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5711: all: clean up C function prototypes: [https://github.com/golang/go/issues/5711](https://github.com/golang/go/issues/5711) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5712: all: clean up C function prototypes: [https://github.com/golang/go/issues/5712](https://github.com/golang/go/issues/5712) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5713: all: clean up C function prototypes: [https://github.com/golang/go/issues/5713](https://github.com/golang/go/issues/5713) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5714: all: clean up C function prototypes: [https://github.com/golang/go/issues/5714](https://github.com/golang/go/issues/5714) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5715: all: clean up C function prototypes: [https://github.com/golang/go/issues/5715](https://github.com/golang/go/issues/5715) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5716: all: clean up C function prototypes: [https://github.com/golang/go/issues/5716](https://github.com/golang/go/issues/5716) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5717: all: clean up C function prototypes: [https://github.com/golang/go/issues/5717](https://github.com/golang/go/issues/5717) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5718: all: clean up C function prototypes: [https://github.com/golang/go/issues/5718](https://github.com/golang/go/issues/5718) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5719: all: clean up C function prototypes: [https://github.com/golang/go/issues/5719](https://github.com/golang/go/issues/5719) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5720: all: clean up C function prototypes: [https://github.com/golang/go/issues/5720](https://github.com/golang/go/issues/5720) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5721: all: clean up C function prototypes: [https://github.com/golang/go/issues/5721](https://github.com/golang/go/issues/5721) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5722: all: clean up C function prototypes: [https://github.com/golang/go/issues/5722](https://github.com/golang/go/issues/5722) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5723: all: clean up C function prototypes: [https://github.com/golang/go/issues/5723](https://github.com/golang/go/issues/5723) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5724: all: clean up C function prototypes: [https://github.com/golang/go/issues/5724](https://github.com/golang/go/issues/5724) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5725: all: clean up C function prototypes: [https://github.com/golang/go/issues/5725](https://github.com/golang/go/issues/5725) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5726: all: clean up C function prototypes: [https://github.com/golang/go/issues/5726](https://github.com/golang/go/issues/5726) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5727: all: clean up C function prototypes: [https://github.com/golang/go/issues/5727](https://github.com/golang/go/issues/5727) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5728: all: clean up C function prototypes: [https://github.com/golang/go/issues/5728](https://github.com/golang/go/issues/5728) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5729: all: clean up C function prototypes: [https://github.com/golang/go/issues/5729](https://github.com/golang/go/issues/5729) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5730: all: clean up C function prototypes: [https://github.com/golang/go/issues/5730](https://github.com/golang/go/issues/5730) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5731: all: clean up C function prototypes: [https://github.com/golang/go/issues/5731](https://github.com/golang/go/issues/5731) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5732: all: clean up C function prototypes: [https://github.com/golang/go/issues/5732](https://github.com/golang/go/issues/5732) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5733: all: clean up C function prototypes: [https://github.com/golang/go/issues/5733](https://github.com/golang/go/issues/5733) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5734: all: clean up C function prototypes: [https://github.com/golang/go/issues/5734](https://github.com/golang/go/issues/5734) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5735: all: clean up C function prototypes: [https://github.com/golang/go/issues/5735](https://github.com/golang/go/issues/5735) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5736: all: clean up C function prototypes: [https://github.com/golang/go/issues/5736](https://github.com/golang/go/issues/5736) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5737: all: clean up C function prototypes: [https://github.com/golang/go/issues/5737](https://github.com/golang/go/issues/5737) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5738: all: clean up C function prototypes: [https://github.com/golang/go/issues/5738](https://github.com/golang/go/issues/5738) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5739: all: clean up C function prototypes: [https://github.com/golang/go/issues/5739](https://github.com/golang/go/issues/5739) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5740: all: clean up C function prototypes: [https://github.com/golang/go/issues/5740](https://github.com/golang/go/issues/5740) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5741: all: clean up C function prototypes: [https://github.com/golang/go/issues/5741](https://github.com/golang/go/issues/5741) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5742: all: clean up C function prototypes: [https://github.com/golang/go/issues/5742](https://github.com/golang/go/issues/5742) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5743: all: clean up C function prototypes: [https://github.com/golang/go/issues/5743](https://github.com/golang/go/issues/5743) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5744: all: clean up C function prototypes: [https://github.com/golang/go/issues/5744](https://github.com/golang/go/issues/5744) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5745: all: clean up C function prototypes: [https://github.com/golang/go/issues/5745](https://github.com/golang/go/issues/5745) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5746: all: clean up C function prototypes: [https://github.com/golang/go/issues/5746](https://github.com/golang/go/issues/5746) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5747: all: clean up C function prototypes: [https://github.com/golang/go/issues/5747](https://github.com/golang/go/issues/5747) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5748: all: clean up C function prototypes: [https://github.com/golang/go/issues/5748](https://github.com/golang/go/issues/5748) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5749: all: clean up C function prototypes: [https://github.com/golang/go/issues/5749](https://github.com/golang/go/issues/5749) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5750: all: clean up C function prototypes: [https://github.com/golang/go/issues/5750](https://github.com/golang/go/issues/5750) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5751: all: clean up C function prototypes: [https://github.com/golang/go/issues/5751](https://github.com/golang/go/issues/5751) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5752: all: clean up C function prototypes: [https://github.com/golang/go/issues/5752](https://github.com/golang/go/issues/5752) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5753: all: clean up C function prototypes: [https://github.com/golang/go/issues/5753](https://github.com/golang/go/issues/5753) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5754: all: clean up C function prototypes: [https://github.com/golang/go/issues/5754](https://github.com/golang/go/issues/5754) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5755: all: clean up C function prototypes: [https://github.com/golang/go/issues/5755](https://github.com/golang/go/issues/5755) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5756: all: clean up C function prototypes: [https://github.com/golang/go/issues/5756](https://github.com/golang/go/issues/5756) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5757: all: clean up C function prototypes: [https://github.com/golang/go/issues/5757](https://github.com/golang/go/issues/5757) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5758: all: clean up C function prototypes: [https://github.com/golang/go/issues/5758](https://github.com/golang/go/issues/5758) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5759: all: clean up C function prototypes: [https://github.com/golang/go/issues/5759](https://github.com/golang/go/issues/5759) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5760: all: clean up C function prototypes: [https://github.com/golang/go/issues/5760](https://github.com/golang/go/issues/5760) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5761: all: clean up C function prototypes: [https://github.com/golang/go/issues/5761](https://github.com/golang/go/issues/5761) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5762: all: clean up C function prototypes: [https://github.com/golang/go/issues/5762](https://github.com/golang/go/issues/5762) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5763: all: clean up C function prototypes: [https://github.com/golang/go/issues/5763](https://github.com/golang/go/issues/5763) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5764: all: clean up C function prototypes: [https://github.com/golang/go/issues/5764](https://github.com/golang/go/issues/5764) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5765: all: clean up C function prototypes: [https://github.com/golang/go/issues/5765](https://github.com/golang/go/issues/5765) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5766: all: clean up C function prototypes: [https://github.com/golang/go/issues/5766](https://github.com/golang/go/issues/5766) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5767: all: clean up C function prototypes: [https://github.com/golang/go/issues/5767](https://github.com/golang/go/issues/5767) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5768: all: clean up C function prototypes: [https://github.com/golang/go/issues/5768](https://github.com/golang/go/issues/5768) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5769: all: clean up C function prototypes: [https://github.com/golang/go/issues/5769](https://github.com/golang/go/issues/5769) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5770: all: clean up C function prototypes: [https://github.com/golang/go/issues/5770](https://github.com/golang/go/issues/5770) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5771: all: clean up C function prototypes: [https://github.com/golang/go/issues/5771](https://github.com/golang/go/issues/5771) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5772: all: clean up C function prototypes: [https://github.com/golang/go/issues/5772](https://github.com/golang/go/issues/5772) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5773: all: clean up C function prototypes: [https://github.com/golang/go/issues/5773](https://github.com/golang/go/issues/5773) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5774: all: clean up C function prototypes: [https://github.com/golang/go/issues/5774](https://github.com/golang/go/issues/5774) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5775: all: clean up C function prototypes: [https://github.com/golang/go/issues/5775](https://github.com/golang/go/issues/5775) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5776: all: clean up C function prototypes: [https://github.com/golang/go/issues/5776](https://github.com/golang/go/issues/5776) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5777: all: clean up C function prototypes: [https://github.com/golang/go/issues/5777](https://github.com/golang/go/issues/5777) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5778: all: clean up C function prototypes: [https://github.com/golang/go/issues/5778](https://github.com/golang/go/issues/5778) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5779: all: clean up C function prototypes: [https://github.com/golang/go/issues/5779](https://github.com/golang/go/issues/5779) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5780: all: clean up C function prototypes: [https://github.com/golang/go/issues/5780](https://github.com/golang/go/issues/5780) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5781: all: clean up C function prototypes: [https://github.com/golang/go/issues/5781](https://github.com/golang/go/issues/5781) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5782: all: clean up C function prototypes: [https://github.com/golang/go/issues/5782](https://github.com/golang/go/issues/5782) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5783: all: clean up C function prototypes: [https://github.com/golang/go/issues/5783](https://github.com/golang/go/issues/5783) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5784: all: clean up C function prototypes: [https://github.com/golang/go/issues/5784](https://github.com/golang/go/issues/5784) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5785: all: clean up C function prototypes: [https://github.com/golang/go/issues/5785](https://github.com/golang/go/issues/5785) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5786: all: clean up C function prototypes: [https://github.com/golang/go/issues/5786](https://github.com/golang/go/issues/5786) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5787: all: clean up C function prototypes: [https://github.com/golang/go/issues/5787](https://github.com/golang/go/issues/5787) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5788: all: clean up C function prototypes: [https://github.com/golang/go/issues/5788](https://github.com/golang/go/issues/5788) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5789: all: clean up C function prototypes: [https://github.com/golang/go/issues/5789](https://github.com/golang/go/issues/5789) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5790: all: clean up C function prototypes: [https://github.com/golang/go/issues/5790](https://github.com/golang/go/issues/5790) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5791: all: clean up C function prototypes: [https://github.com/golang/go/issues/5791](https://github.com/golang/go/issues/5791) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5792: all: clean up C function prototypes: [https://github.com/golang/go/issues/5792](https://github.com/golang/go/issues/5792) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5793: all: clean up C function prototypes: [https://github.com/golang/go/issues/5793](https://github.com/golang/go/issues/5793) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5794: all: clean up C function prototypes: [https://github.com/golang/go/issues/5794](https://github.com/golang/go/issues/5794) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5795: all: clean up C function prototypes: [https://github.com/golang/go/issues/5795](https://github.com/golang/go/issues/5795) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5796: all: clean up C function prototypes: [https://github.com/golang/go/issues/5796](https://github.com/golang/go/issues/5796) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5797: all: clean up C function prototypes: [https://github.com/golang/go/issues/5797](https://github.com/golang/go/issues/5797) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5798: all: clean up C function prototypes: [https://github.com/golang/go/issues/5798](https://github.com/golang/go/issues/5798) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5799: all: clean up C function prototypes: [https://github.com/golang/go/issues/5799](https://github.com/golang/go/issues/5799) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5800: all: clean up C function prototypes: [https://github.com/golang/go/issues/5800](https://github.com/golang/go/issues/5800) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5801: all: clean up C function prototypes: [https://github.com/golang/go/issues/5801](https://github.com/golang/go/issues/5801) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5802: all: clean up C function prototypes: [https://github.com/golang/go/issues/5802](https://github.com/golang/go/issues/5802) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5803: all: clean up C function prototypes: [https://github.com/golang/go/issues/5803](https://github.com/golang/go/issues/5803) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5804: all: clean up C function prototypes: [https://github.com/golang/go/issues/5804](https://github.com/golang/go/issues/5804) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5805: all: clean up C function prototypes: [https://github.com/golang/go/issues/5805](https://github.com/golang/go/issues/5805) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5806: all: clean up C function prototypes: [https://github.com/golang/go/issues/5806](https://github.com/golang/go/issues/5806) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5807: all: clean up C function prototypes: [https://github.com/golang/go/issues/5807](https://github.com/golang/go/issues/5807) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5808: all: clean up C function prototypes: [https://github.com/golang/go/issues/5808](https://github.com/golang/go/issues/5808) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5809: all: clean up C function prototypes: [https://github.com/golang/go/issues/5809](https://github.com/golang/go/issues/5809) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5810: all: clean up C function prototypes: [https://github.com/golang/go/issues/5810](https://github.com/golang/go/issues/5810) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5811: all: clean up C function prototypes: [https://github.com/golang/go/issues/5811](https://github.com/golang/go/issues/5811) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5812: all: clean up C function prototypes: [https://github.com/golang/go/issues/5812](https://github.com/golang/go/issues/5812) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5813: all: clean up C function prototypes: [https://github.com/golang/go/issues/5813](https://github.com/golang/go/issues/5813) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5814: all: clean up C function prototypes: [https://github.com/golang/go/issues/5814](https://github.com/golang/go/issues/5814) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5815: all: clean up C function prototypes: [https://github.com/golang/go/issues/5815](https://github.com/golang/go/issues/5815) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5816: all: clean up C function prototypes: [https://github.com/golang/go/issues/5816](https://github.com/golang/go/issues/5816) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5817: all: clean up C function prototypes: [https://github.com/golang/go/issues/5817](https://github.com/golang/go/issues/5817) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5818: all: clean up C function prototypes: [https://github.com/golang/go/issues/5818](https://github.com/golang/go/issues/5818) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5819: all: clean up C function prototypes: [https://github.com/golang/go/issues/5819](https://github.com/golang/go/issues/5819) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5820: all: clean up C function prototypes: [https://github.com/golang/go/issues/5820](https://github.com/golang/go/issues/5820) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5821: all: clean up C function prototypes: [https://github.com/golang/go/issues/5821](https://github.com/golang/go/issues/5821) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5822: all: clean up C function prototypes: [https://github.com/golang/go/issues/5822](https://github.com/golang/go/issues/5822) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5823: all: clean up C function prototypes: [https://github.com/golang/go/issues/5823](https://github.com/golang/go/issues/5823) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5824: all: clean up C function prototypes: [https://github.com/golang/go/issues/5824](https://github.com/golang/go/issues/5824) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5825: all: clean up C function prototypes: [https://github.com/golang/go/issues/5825](https://github.com/golang/go/issues/5825) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5826: all: clean up C function prototypes: [https://github.com/golang/go/issues/5826](https://github.com/golang/go/issues/5826) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5827: all: clean up C function prototypes: [https://github.com/golang/go/issues/5827](https://github.com/golang/go/issues/5827) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5828: all: clean up C function prototypes: [https://github.com/golang/go/issues/5828](https://github.com/golang/go/issues/5828) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5829: all: clean up C function prototypes: [https://github.com/golang/go/issues/5829](https://github.com/golang/go/issues/5829) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5830: all: clean up C function prototypes: [https://github.com/golang/go/issues/5830](https://github.com/golang/go/issues/5830) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5831: all: clean up C function prototypes: [https://github.com/golang/go/issues/5831](https://github.com/golang/go/issues/5831) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5832: all: clean up C function prototypes: [https://github.com/golang/go/issues/5832](https://github.com/golang/go/issues/5832) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5833: all: clean up C function prototypes: [https://github.com/golang/go/issues/5833](https://github.com/golang/go/issues/5833) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5834: all: clean up C function prototypes: [https://github.com/golang/go/issues/5834](https://github.com/golang/go/issues/5834) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5835: all: clean up C function prototypes: [https://github.com/golang/go/issues/5835](https://github.com/golang/go/issues/5835) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5836: all: clean up C function prototypes: [https://github.com/golang/go/issues/5836](https://github.com/golang/go/issues/5836) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5837: all: clean up C function prototypes: [https://github.com/golang/go/issues/5837](https://github.com/golang/go/issues/5837) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5838: all: clean up C function prototypes: [https://github.com/golang/go/issues/5838](https://github.com/golang/go/issues/5838) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5839: all: clean up C function prototypes: [https://github.com/golang/go/issues/5839](https://github.com/golang/go/issues/5839) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5840: all: clean up C function prototypes: [https://github.com/golang/go/issues/5840](https://github.com/golang/go/issues/5840) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5841: all: clean up C function prototypes: [https://github.com/golang/go/issues/5841](https://github.com/golang/go/issues/5841) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5842: all: clean up C function prototypes: [https://github.com/golang/go/issues/5842](https://github.com/golang/go/issues/5842) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5843: all: clean up C function prototypes: [https://github.com/golang/go/issues/5843](https://github.com/golang/go/issues/5843) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5844: all: clean up C function prototypes: [https://github.com/golang/go/issues/5844](https://github.com/golang/go/issues/5844) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5845: all: clean up C function prototypes: [https://github.com/golang/go/issues/5845](https://github.com/golang/go/issues/5845) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5846: all: clean up C function prototypes: [https://github.com/golang/go/issues/5846](https://github.com/golang/go/issues/5846) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5847: all: clean up C function prototypes: [https://github.com/golang/go/issues/5847](https://github.com/golang/go/issues/5847) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5848: all: clean up C function prototypes: [https://github.com/golang/go/issues/5848](https://github.com/golang/go/issues/5848) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5849: all: clean up C function prototypes: [https://github.com/golang/go/issues/5849](https://github.com/golang/go/issues/5849) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5850: all: clean up C function prototypes: [https://github.com/golang/go/issues/5850](https://github.com/golang/go/issues/5850) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5851: all: clean up C function prototypes: [https://github.com/golang/go/issues/5851](https://github.com/golang/go/issues/5851) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5852: all: clean up C function prototypes: [https://github.com/golang/go/issues/5852](https://github.com/golang/go/issues/5852) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5853: all: clean up C function prototypes: [https://github.com/golang/go/issues/5853](https://github.com/golang/go/issues/5853) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5854: all: clean up C function prototypes: [https://github.com/golang/go/issues/5854](https://github.com/golang/go/issues/5854) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5855: all: clean up C function prototypes: [https://github.com/golang/go/issues/5855](https://github.com/golang/go/issues/5855) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5856: all: clean up C function prototypes: [https://github.com/golang/go/issues/5856](https://github.com/golang/go/issues/5856) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5857: all: clean up C function prototypes: [https://github.com/golang/go/issues/5857](https://github.com/golang/go/issues/5857) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5858: all: clean up C function prototypes: [https://github.com/golang/go/issues/5858](https://github.com/golang/go/issues/5858) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5859: all: clean up C function prototypes: [https://github.com/golang/go/issues/5859](https://github.com/golang/go/issues/5859) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5860: all: clean up C function prototypes: [https://github.com/golang/go/issues/5860](https://github.com/golang/go/issues/5860) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5861: all: clean up C function prototypes: [https://github.com/golang/go/issues/5861](https://github.com/golang/go/issues/5861) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5862: all: clean up C function prototypes: [https://github.com/golang/go/issues/5862](https://github.com/golang/go/issues/5862) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5863: all: clean up C function prototypes: [https://github.com/golang/go/issues/5863](https://github.com/golang/go/issues/5863) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5864: all: clean up C function prototypes: [https://github.com/golang/go/issues/5864](https://github.com/golang/go/issues/5864) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5865: all: clean up C function prototypes: [https://github.com/golang/go/issues/5865](https://github.com/golang/go/issues/5865) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5866: all: clean up C function prototypes: [https://github.com/golang/go/issues/5866](https://github.com/golang/go/issues/5866) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5867: all: clean up C function prototypes: [https://github.com/golang/go/issues/5867](https://github.com/golang/go/issues/567) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5868: all: clean up C function prototypes: [https://github.com/golang/go/issues/5868](https://github.com/golang/go/issues/5868) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5869: all: clean up C function prototypes: [https://github.com/golang/go/issues/5869](https://github.com/golang/go/issues/5869) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5870: all: clean up C function prototypes: [https://github.com/golang/go/issues/5870](https://github.com/golang/go/issues/5870) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5871: all: clean up C function prototypes: [https://github.com/golang/go/issues/5871](https://github.com/golang/go/issues/5871) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5872: all: clean up C function prototypes: [https://github.com/golang/go/issues/5872](https://github.com/golang/go/issues/5872) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5873: all: clean up C function prototypes: [https://github.com/golang/go/issues/5873](https://github.com/golang/go/issues/5873) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5874: all: clean up C function prototypes: [https://github.com/golang/go/issues/5874](https://github.com/golang/go/issues/5874) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5875: all: clean up C function prototypes: [https://github.com/golang/go/issues/5875](https://github.com/golang/go/issues/5875) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5876: all: clean up C function prototypes: [https://github.com/golang/go/issues/5876](https://github.com/golang/go/issues/5876) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5877: all: clean up C function prototypes: [https://github.com/golang/go/issues/5877](https://github.com/golang/go/issues/5877) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5878: all: clean up C function prototypes: [https://github.com/golang/go/issues/5878](https://github.com/golang/go/issues/5878) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5879: all: clean up C function prototypes: [https://github.com/golang/go/issues/5879](https://github.com/golang/go/issues/5879) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5880: all: clean up C function prototypes: [https://github.com/golang/go/issues/5880](https://github.com/golang/go/issues/5880) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5881: all: clean up C function prototypes: [https://github.com/golang/go/issues/5881](https://github.com/golang/go/issues/5881) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5882: all: clean up C function prototypes: [https://github.com/golang/go/issues/5882](https://github.com/golang/go/issues/5882) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5883: all: clean up C function prototypes: [https://github.com/golang/go/issues/5883](https://github.com/golang/go/issues/5883) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5884: all: clean up C function prototypes: [https://github.com/golang/go/issues/5884](https://github.com/golang/go/issues/5884) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5885: all: clean up C function prototypes: [https://github.com/golang/go/issues/5885](https://github.com/golang/go/issues/5885) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5886: all: clean up C function prototypes: [https://github.com/golang/go/issues/5886](https://github.com/golang/go/issues/5886) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5887: all: clean up C function prototypes: [https://github.com/golang/go/issues/5887](https://github.com/golang/go/issues/5887) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5888: all: clean up C function prototypes: [https://github.com/golang/go/issues/5888](https://github.com/golang/go/issues/5888) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5889: all: clean up C function prototypes: [https://github.com/golang/go/issues/5889](https://github.com/golang/go/issues/5889) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5890: all: clean up C function prototypes: [https://github.com/golang/go/issues/5890](https://github.com/golang/go/issues/5890) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5891: all: clean up C function prototypes: [https://github.com/golang/go/issues/5891](https://github.com/golang/go/issues/5891) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5892: all: clean up C function prototypes: [https://github.com/golang/go/issues/5892](https://github.com/golang/go/issues/5892) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5893: all: clean up C function prototypes: [https://github.com/golang/go/issues/5893](https://github.com/golang/go/issues/5893) (このコミットに関連する可能性のあるGoのissue)
*   Go issue 5894: all: clean up C function prototypes: [https://github.com/golang/go/issues/5894](https://github.com/golang/go/