[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [rtl] inlined rdtsc() function in header file



Change

__inline__ unsigned long long int rdtsc(void)

to

static __inline__ unsigned long long int rdtsc(void)

or

extern __inline__ unsigned long long int rdtsc(void)

and it should work.