1
0
Fork 0
mdadm/xmalloc.h
Daniel Baumann 60ccb5b596
Merging upstream version 4.3+20241108.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-14 06:34:57 +01:00

13 lines
246 B
C

// SPDX-License-Identifier: GPL-2.0-only
#ifndef XMALLOC_H
#define XMALLOC_H
#include <stddef.h>
void *xmalloc(size_t len);
void *xrealloc(void *ptr, size_t len);
void *xcalloc(size_t num, size_t size);
char *xstrdup(const char *str);
#endif