Index: sys/powerpc/include/profile.h =================================================================== RCS file: /cvs/FreeBSD/src/sys/powerpc/include/profile.h,v retrieving revision 1.4 diff -u -r1.4 profile.h --- sys/powerpc/include/profile.h 7 Jan 2005 02:29:19 -0000 1.4 +++ sys/powerpc/include/profile.h 11 Jun 2005 01:43:04 -0000 @@ -37,7 +37,6 @@ #define FUNCTION_ALIGNMENT 16 typedef u_int fptrdiff_t; -typedef u_int uintfptr_t; #define MCOUNT \ void \ @@ -63,6 +62,11 @@ ((pc >= (uintfptr_t)bintr) ? (uintfptr_t)bintr : \ (uintfptr_t)btrap) : ~0U) -#endif + +#else /* !_KERNEL */ + +typedef u_int uintfptr_t; + +#endif /* _KERNEL */ #endif /* !_MACHINE_PROFILE_H_ */