1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-04 17:15:50 +00:00

In cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c, the

dt_popc() function assumes that either _ILP32 or _LP64 is defined,
otherwise it has no suitable implementation.

However, the _ILP32 and _LP64 macros come from isa_defs.h, which is not
included in this file.  Add the include now, to get the macros defined.

MFC after:	1 week
This commit is contained in:
Dimitry Andric 2011-12-15 23:06:46 +00:00
parent 8b6b79ce0a
commit 6d9bf0940c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228550

View File

@ -27,6 +27,7 @@
#if defined(sun)
#include <sys/sysmacros.h>
#endif
#include <sys/isa_defs.h>
#include <strings.h>
#include <unistd.h>