implemented restack behavior (floats are on top in tiled mode)
This commit is contained in:
9
util.c
9
util.c
@ -40,6 +40,15 @@ eprint(const char *errstr, ...)
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
void *
|
||||
erealloc(void *ptr, unsigned int size)
|
||||
{
|
||||
void *res = realloc(ptr, size);
|
||||
if(!res)
|
||||
bad_malloc(size);
|
||||
return res;
|
||||
}
|
||||
|
||||
void
|
||||
spawn(Arg *arg)
|
||||
{
|
||||
|
Reference in New Issue
Block a user