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:
markj 2018-12-03 21:07:10 +00:00
parent 53d55c9af9
commit b5e1761489

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