removed emallocz

This commit is contained in:
Anselm R Garbe 2008-05-22 14:10:00 +01:00
parent 0528a37c79
commit 0a9ef560c0
1 changed files with 2 additions and 11 deletions

13
dwm.c
View File

@ -132,7 +132,6 @@ void detachstack(Client *c);
void drawbar(void); void drawbar(void);
void drawsquare(Bool filled, Bool empty, Bool invert, ulong col[ColLast]); void drawsquare(Bool filled, Bool empty, Bool invert, ulong col[ColLast]);
void drawtext(const char *text, ulong col[ColLast], Bool invert); void drawtext(const char *text, ulong col[ColLast], Bool invert);
void *emallocz(uint size);
void enternotify(XEvent *e); void enternotify(XEvent *e);
void eprint(const char *errstr, ...); void eprint(const char *errstr, ...);
void expose(XEvent *e); void expose(XEvent *e);
@ -596,15 +595,6 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {
XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len); XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
} }
void *
emallocz(uint size) {
void *res = calloc(1, size);
if(!res)
eprint("fatal: could not malloc() %u bytes\n", size);
return res;
}
void void
enternotify(XEvent *e) { enternotify(XEvent *e) {
Client *c; Client *c;
@ -931,7 +921,8 @@ manage(Window w, XWindowAttributes *wa) {
Window trans; Window trans;
XWindowChanges wc; XWindowChanges wc;
c = emallocz(sizeof(Client)); if(!(c = calloc(1, sizeof(Client))))
eprint("fatal: could not calloc() %u bytes\n", sizeof(Client));
c->win = w; c->win = w;
/* geometry */ /* geometry */