2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libgo / runtime / go-ffi.h
blobafae4b6d6ed8f87791df7c7c0c55ab8c680bec44
1 /* go-ffi.c -- convert Go type description to libffi.
3 Copyright 2014 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 #include "config.h"
8 #include "go-type.h"
10 #ifdef USE_LIBFFI
12 #include "ffi.h"
14 void __go_func_to_cif (const struct __go_func_type *, _Bool, _Bool, ffi_cif *);
16 #endif