Hash :
64a47c01
Author :
Date :
2008-12-30T23:21:36
#define GIT__NO_HIDE_MALLOC
#include "common.h"
void *git__malloc(size_t n)
{
void *r = malloc(n);
if (!r)
return git_ptr_error(GIT_ENOMEM);
return r;
}
void *git__calloc(size_t a, size_t b)
{
void *r = calloc(a, b);
if (!r)
return git_ptr_error(GIT_ENOMEM);
return r;
}
char *git__strdup(const char *s)
{
char *r = strdup(s);
if (!s)
return git_ptr_error(GIT_ENOMEM);
return r;
}