Solaris didn't like this.

Let's just go ahead and make this match every other uintXX_t in Asterisk.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40833 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker
2006-08-22 05:34:44 +00:00
parent 0264c362b6
commit ec23dcb172

View File

@@ -405,7 +405,7 @@ int64_t ast_profile(int i, int64_t delta)
#if defined(__FreeBSD__)
#include <machine/cpufunc.h>
#elif defined(linux)
static __inline u_int64_t
static __inline uint64_t
rdtsc(void)
{
uint64_t rv;
@@ -415,7 +415,7 @@ rdtsc(void)
}
#endif
#else /* supply a dummy function on other platforms */
static __inline u_int64_t
static __inline uint64_t
rdtsc(void)
{
return 0;