replace "pointer" typedef by void*

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-03 14:05:28 +01:00
committed by Enrico Weigelt
parent 3fbd50b0bb
commit 0b3d994d0a

View File

@@ -53,7 +53,7 @@ static void
BellProc(
int percent,
DeviceIntPtr pDev,
pointer ctrl,
void *ctrl,
int unused)
{
return;
@@ -234,7 +234,7 @@ _X_EXPORT InputDriverRec VOID = {
* called when the module subsection is found in XF86Config
*/
static void
xf86VoidUnplug(pointer p)
xf86VoidUnplug(void *p)
{
}
@@ -243,11 +243,8 @@ xf86VoidUnplug(pointer p)
*
* called when the module subsection is found in XF86Config
*/
static pointer
xf86VoidPlug(pointer module,
pointer options,
int *errmaj,
int *errmin)
static void*
xf86VoidPlug(void *module, void *options, int *errmaj, int *errmin)
{
xf86AddInputDriver(&VOID, module, 0);