clang-c.h 245 B

12345678910111213141516
  1. #ifndef PERF_UTIL_CLANG_C_H
  2. #define PERF_UTIL_CLANG_C_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern void perf_clang__init(void);
  7. extern void perf_clang__cleanup(void);
  8. extern int test__clang_to_IR(void);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif