Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v2.6.31-rc7 11 lines 160 B view raw
1#ifndef _PERF_STRING_H_ 2#define _PERF_STRING_H_ 3 4#include "types.h" 5 6int hex2u64(const char *ptr, u64 *val); 7 8#define _STR(x) #x 9#define STR(x) _STR(x) 10 11#endif