x86/amd-iommu: Add per IOMMU reference counting
[linux/fpc-iii.git] / tools / perf / util / string.h
blobbf39dfadfd24dd00fe845f1c321bf0994ad768b0
1 #ifndef _PERF_STRING_H_
2 #define _PERF_STRING_H_
4 #include "types.h"
6 int hex2u64(const char *ptr, u64 *val);
8 #define _STR(x) #x
9 #define STR(x) _STR(x)
11 #endif