stand: Make ioctl declaration consistent
authorWarner Losh <imp@FreeBSD.org>
Tue, 13 Dec 2022 04:46:05 +0000 (21:46 -0700)
committerWarner Losh <imp@FreeBSD.org>
Tue, 13 Dec 2022 04:46:34 +0000 (21:46 -0700)
commit2e1e68cbaee3e74a89e9b63fdb180974a2bf4292
treee3bd28aad0d3dbf4acfd185ef431ccda39b617c1
parent0b75997f4c5a15f02e6d5eee981a1b752dd0fd59
stand: Make ioctl declaration consistent

It typically had two args with an optional third from the userland
declaration in sys/ioccom.h. However, the funciton definition used a
non-optional char * argument. This mismatch is UB behavior (but worked
due to the calling convetions of all our machines).

Instead, add a declaration for ioctl to stand.h, make the third arg
'void *' which is a better match to the ... declaration before. This
prevents the convert int * -> char * errors as well. Make the ioctl
user-space declaration truly user-space specific (omit it in the
stand-alone build).

No functional change intended.

Sponsored by: Netflix
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D37680
stand/libsa/ioctl.c
stand/libsa/stand.h
sys/sys/ioccom.h