this repo has no description
at fixPythonPipStalling 22 lines 490 B view raw
1#ifndef _XTRACE_BASE_H_ 2#define _XTRACE_BASE_H_ 3 4// common utilities for xtrace code 5 6#define XTRACE_INLINE static __attribute__((always_inline)) 7#define XTRACE_HIDDEN __attribute__((visibility("hidden"))) 8 9#ifdef __cplusplus 10 #define XTRACE_DECLARATIONS_C_BEGIN extern "C" { 11 #define XTRACE_CPP __cplusplus 12#else 13 #define XTRACE_DECLARATIONS_C_BEGIN 14#endif 15 16#ifdef __cplusplus 17 #define XTRACE_DECLARATIONS_C_END } 18#else 19 #define XTRACE_DECLARATIONS_C_END 20#endif 21 22#endif // _XTRACE_BASE_H_