aboutsummaryrefslogtreecommitdiffstats
path: root/envaligned_reallocn.c
blob: ab24fe87b210fc5b83a702285e8408bb3843cdac (plain) (blame)
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
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


void *
libsimple_envaligned_reallocn(int status, void *ptr, size_t alignment, size_t n, va_list ap) /* TODO test (evaligned_reallocn, aligned_reallocn, enaligned_reallocn, ealigned_reallocn) */
{
	void *ret = valigned_reallocn(ptr, alignment, n, ap);
	if (!ret)
		enprintf(status, "valigned_reallocn:");
	return ret;
}


#else
#include "test.h"

int
main(void)
{
	return 0;
}

#endif