Clang Project

clang_source_code/test/Modules/Inputs/libc-libcxx/sysroot/Frameworks/A.framework/Headers/int.h
1#ifndef __my_int
2#define __my_int
3
4#include <stdint.h>
5
6#ifdef __cplusplus
7extern "C"
8{
9#endif
10
11typedef int_fast32_t myint;
12}
13
14#endif
15