xkb: remove _XkbAlloc, _XkbCalloc, _XkbRealloc and _XkbFree

We all agree that wrapping is fun, but seriously. One of these days someone
will get hurt.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2009-05-05 21:00:31 +10:00
commit 5cf7018381
11 changed files with 136 additions and 140 deletions

View file

@ -1136,7 +1136,7 @@ ClientPtr client = NULL;
autoCtrls= interest->autoCtrls;
autoValues= interest->autoCtrlValues;
client= interest->client;
_XkbFree(interest);
xfree(interest);
found= True;
}
while ((!found)&&(interest->next)) {
@ -1146,7 +1146,7 @@ ClientPtr client = NULL;
autoCtrls= victim->autoCtrls;
autoValues= victim->autoCtrlValues;
client= victim->client;
_XkbFree(victim);
xfree(victim);
found= True;
}
interest = interest->next;