cursor.c: no KH-style function definitions

This commit is contained in:
Iris Lightshard 2021-03-05 23:52:37 -05:00
parent 608ea90f1e
commit 8ce7319b08
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

View file

@ -141,8 +141,7 @@ static char grey_bits[] = {0x01, 0x04};
static XColor bl, wh;
Cursor getcursor(c, s) Cursordata* c;
ScreenInfo* s;
Cursor getcursor(Cursordata* c, ScreenInfo* s)
{
Pixmap f, m;
@ -167,7 +166,7 @@ ScreenInfo* s;
return XCreatePixmapCursor(dpy, f, m, &bl, &wh, c->hot[0], c->hot[1]);
}
void initcurs(s) ScreenInfo* s;
void initcurs(ScreenInfo* s)
{
XColor dummy;