/* Copyright (C) GCK * * This file is part of gcklib * * This project and file is licensed under the BSD-3-Clause licence. * */ #ifndef xmem_H #define xmem_H #include void *xmalloc(size_t size); void *xrealloc(void *ptr, size_t size); void *xcalloc(size_t nmemb, size_t size); #endif