summaryrefslogtreecommitdiffstats
path: root/src/misc/vec/vec.h
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2008-05-16 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2008-05-16 08:01:00 -0700
commit6da56f1f0f6942e3fc257d8396588804c5891e93 (patch)
treec0bd5dde0ae6bbe389ef725a13a2500182273c39 /src/misc/vec/vec.h
parent74ff01bfb54e9f0a68ac88b827521a422269a144 (diff)
downloadabc-6da56f1f0f6942e3fc257d8396588804c5891e93.tar.gz
abc-6da56f1f0f6942e3fc257d8396588804c5891e93.tar.bz2
abc-6da56f1f0f6942e3fc257d8396588804c5891e93.zip
Version abc80516
Diffstat (limited to 'src/misc/vec/vec.h')
-rw-r--r--src/misc/vec/vec.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/misc/vec/vec.h b/src/misc/vec/vec.h
index 4091ac7f..ee82fc3e 100644
--- a/src/misc/vec/vec.h
+++ b/src/misc/vec/vec.h
@@ -72,6 +72,10 @@ typedef long long sint64;
#define ALLOC(type, num) ((type *) malloc(sizeof(type) * (num)))
#endif
+#ifndef CALLOC
+#define CALLOC(type, num) ((type *) calloc((num), sizeof(type)))
+#endif
+
#ifndef FREE
#define FREE(obj) ((obj) ? (free((char *) (obj)), (obj) = 0) : 0)
#endif