failalloc.c 1.67 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

#include "failalloc.h"

void *git_failalloc_malloc(size_t len, const char *file, int line)
{
	GIT_UNUSED(len);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

void *git_failalloc_calloc(size_t nelem, size_t elsize, const char *file, int line)
{
	GIT_UNUSED(nelem);
	GIT_UNUSED(elsize);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

char *git_failalloc_strdup(const char *str, const char *file, int line)
{
	GIT_UNUSED(str);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

char *git_failalloc_strndup(const char *str, size_t n, const char *file, int line)
{
	GIT_UNUSED(str);
	GIT_UNUSED(n);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

char *git_failalloc_substrdup(const char *start, size_t n, const char *file, int line)
{
	GIT_UNUSED(start);
	GIT_UNUSED(n);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

void *git_failalloc_realloc(void *ptr, size_t size, const char *file, int line)
{
	GIT_UNUSED(ptr);
	GIT_UNUSED(size);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

void *git_failalloc_reallocarray(void *ptr, size_t nelem, size_t elsize, const char *file, int line)
{
	GIT_UNUSED(ptr);
	GIT_UNUSED(nelem);
	GIT_UNUSED(elsize);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

void *git_failalloc_mallocarray(size_t nelem, size_t elsize, const char *file, int line)
{
	GIT_UNUSED(nelem);
	GIT_UNUSED(elsize);
	GIT_UNUSED(file);
	GIT_UNUSED(line);

	return NULL;
}

void git_failalloc_free(void *ptr)
{
	GIT_UNUSED(ptr);
}