Commit 92591316 authored by Alan Coopersmith's avatar Alan Coopersmith Committed by Ulrich Sibiller

Delete unused XKB_INSURE_SIZE macro from XKBlibint.h

parent be32fbb3
......@@ -106,12 +106,6 @@ typedef struct _XkbInfoRec {
/*
* Handy helper macros
*/
#define XKB_INSURE_SIZE(f,t,nNum,oNum) {\
if ((f)==NULL) \
(f)=(t *)Xmalloc(sizeof(t)*(nNum));\
else if ((nNum)<(oNum))\
(f)=(t *)Xrealloc((f),sizeof(t)*(nNum));\
}
typedef struct _XkbReadBuffer {
int error;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment