summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/core_ffi_c.h
blob: 6df1e2f87ad485f7224dd046a26c63f698de11a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// bindgen-flags: --use-core --rust-target 1.64 --no-convert-floats
typedef char c_char;
typedef double c_double;
typedef float c_float;
typedef int c_int;
typedef long c_long;
typedef long long c_longlong;
typedef signed char c_schar;
typedef short c_short;
typedef unsigned char c_uchar;
typedef unsigned int c_uint;
typedef unsigned long c_ulong;
typedef unsigned long long c_ulonglong;
typedef unsigned short c_ushort;