cursor.c: no KH-style function definitions
This commit is contained in:
parent
608ea90f1e
commit
8ce7319b08
1 changed files with 2 additions and 3 deletions
5
cursor.c
5
cursor.c
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue