implemented restack behavior (floats are on top in tiled mode)
This commit is contained in:
parent
4d67199a4b
commit
d4b7a9a373
6 changed files with 81 additions and 34 deletions
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue