Add a missing definition for the !COMPAT_FREEBSD32 case.

Reported by:	jenkins
MFC with:	r341442
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2018-12-03 21:07:10 +00:00
parent 352aaa5122
commit 02164d3603
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=341443

View File

@ -551,6 +551,7 @@ struct ptrace_args {
copyout(k ## 32, u, s ## 32) : \
copyout(k, u, s)
#else
#define BZERO(a, s) bzero(a, s)
#define COPYIN(u, k, s) copyin(u, k, s)
#define COPYOUT(k, u, s) copyout(k, u, s)
#endif