Unbreak the PowerPC GENERIC build.

Reviewed by:	delphij
This commit is contained in:
Joseph Koshy 2005-06-11 10:59:02 +00:00
parent d6dbf760a6
commit 89ec08eebf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=147298

View File

@ -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 @@ void user(void);
((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_ */