From b85cd7b70096cf7c922aed56ae8255fb4b8f0709 Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Sun, 28 Oct 2007 16:36:07 +0000 Subject: Use FREE and MALLOC instead of free and malloc. --- src/mesa/pipe/p_util.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mesa/pipe/p_util.h') diff --git a/src/mesa/pipe/p_util.h b/src/mesa/pipe/p_util.h index 319bb790ae..4f68f5e1bd 100644 --- a/src/mesa/pipe/p_util.h +++ b/src/mesa/pipe/p_util.h @@ -32,6 +32,8 @@ #define CALLOC_STRUCT(T) (struct T *) calloc(1, sizeof(struct T)) +#define MALLOC( SIZE ) malloc( SIZE ) + #define FREE( PTR ) free( PTR ) #define CLAMP( X, MIN, MAX ) ( (X)<(MIN) ? (MIN) : ((X)>(MAX) ? (MAX) : (X)) ) -- cgit v1.2.3