Changeset 2745 in kBuild for trunk/src/kmk/hash.c
- Timestamp:
- Jan 3, 2015 7:32:00 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/hash.c
r2591 r2745 22 22 23 23 24 #define CALLOC(t, n) ((t *) calloc (sizeof (t), (n))) 24 /*#define CALLOC(t, n) ((t *) calloc (sizeof (t), (n)))*/ 25 #define CALLOC(t, n) ((t *) xcalloc (sizeof (t) * (n))) 25 26 #define MALLOC(t, n) ((t *) xmalloc (sizeof (t) * (n))) 26 27 #define REALLOC(o, t, n) ((t *) xrealloc ((o), sizeof (t) * (n)))
Note:
See TracChangeset
for help on using the changeset viewer.