summaryrefslogtreecommitdiff
path: root/main/imports.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-02-22 13:19:34 -0800
committerIan Romanick <ian.d.romanick@intel.com>2010-02-22 13:19:34 -0800
commita87ac255cf7ef0672b4de865d82e6a40c93b57d8 (patch)
treefa929815c34a17ca4e258ee3fa3724fe9b10b250 /main/imports.h
Initial commit. lol
Diffstat (limited to 'main/imports.h')
-rw-r--r--main/imports.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/main/imports.h b/main/imports.h
new file mode 100644
index 0000000000..d2197342c0
--- /dev/null
+++ b/main/imports.h
@@ -0,0 +1,6 @@
+#include <assert.h>
+#include <stdlib.h>
+
+#define _mesa_malloc(x) malloc(x)
+#define _mesa_free(x) free(x)
+#define _mesa_calloc(x) calloc(1,x)