]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - db/malloc.h
xfsprogs: Release v4.19.0-rc1
[thirdparty/xfsprogs-dev.git] / db / malloc.h
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6
7 extern void *xcalloc(size_t nelem, size_t elsize);
8 extern void xfree(void *ptr);
9 extern void *xmalloc(size_t size);
10 extern void *xrealloc(void *ptr, size_t size);
11 extern char *xstrdup(const char *s1);