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