t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 0a9ef560c0b18e95298964a2d482bc64f48b6330
   DIR parent 0528a37c791aa8d7b6a5fb8e712a9ce4dfb1cd12
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Thu, 22 May 2008 14:10:00 +0100
       
       removed emallocz
       Diffstat:
         M dwm.c                               |      13 ++-----------
       
       1 file changed, 2 insertions(+), 11 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -132,7 +132,6 @@ void detachstack(Client *c);
        void drawbar(void);
        void drawsquare(Bool filled, Bool empty, Bool invert, ulong col[ColLast]);
        void drawtext(const char *text, ulong col[ColLast], Bool invert);
       -void *emallocz(uint size);
        void enternotify(XEvent *e);
        void eprint(const char *errstr, ...);
        void expose(XEvent *e);
       t@@ -596,15 +595,6 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {
                        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
        enternotify(XEvent *e) {
                Client *c;
       t@@ -931,7 +921,8 @@ manage(Window w, XWindowAttributes *wa) {
                Window trans;
                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;
        
                /* geometry */