diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-14 10:18:24 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-14 10:18:24 +0200 |
commit | d4b7a9a3735deeab639f28b5bb2f568e0dc49616 (patch) | |
tree | 9cff17d7a5d4fa2fe94b39d0d18d8d72c8429736 /util.c | |
parent | 4d67199a4bb68e5377d2fece62a83fde66c92861 (diff) | |
download | dwm-d4b7a9a3735deeab639f28b5bb2f568e0dc49616.tar.gz |
implemented restack behavior (floats are on top in tiled mode)
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/util.c b/util.c index 4cc748f..2414b39 100644 --- a/util.c +++ b/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) { |