aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan2009-06-20 00:22:39 +0000
committerokan2009-06-20 00:22:39 +0000
commitc6af5e9b967797d315037b26aa05fec5b3e6ef44 (patch)
treed43509362b21d72dea32d8a79f4b199e95b0f566 /calmwm.h
parent5065e7cff4666b454fb3c16be050811f58b9f24f (diff)
downloadcwm-c6af5e9b967797d315037b26aa05fec5b3e6ef44.tar.gz
unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over the
place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
Diffstat (limited to 'calmwm.h')
-rw-r--r--calmwm.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/calmwm.h b/calmwm.h
index f0717fc..e972452 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: calmwm.h,v 1.91 2009/06/17 12:30:17 okan Exp $
+ * $Id: calmwm.h,v 1.92 2009/06/20 00:22:39 okan Exp $
*/
#ifndef _CALMWM_H_
@@ -395,9 +395,6 @@ void *xmalloc(size_t);
void *xcalloc(size_t, size_t);
char *xstrdup(const char *);
-#define XMALLOC(p, t) ((p) = (t *)xmalloc(sizeof * (p)))
-#define XCALLOC(p, t) ((p) = (t *)xcalloc(1, sizeof * (p)))
-
struct screen_ctx *screen_fromroot(Window);
struct screen_ctx *screen_current(void);
void screen_updatestackingorder(void);