Codebase list rpki-client / upstream/6.7p1 include / stdlib.h
upstream/6.7p1

Tree @upstream/6.7p1 (Download .tar.gz)

stdlib.h @upstream/6.7p1raw · history · blame

/*
 * stdlib.h compatibility shim
 * Public domain
 */

#include_next <stdlib.h>

#ifndef LIBCOMPAT_STDLIB_H
#define LIBCOMPAT_STDLIB_H

#ifndef HAVE_REALLOCARRAY
void *reallocarray(void *, size_t, size_t);
#endif

#ifndef HAVE_RECALLOCARRAY
void *recallocarray(void *, size_t, size_t, size_t);
#endif

#endif