save
This commit is contained in:
18
lib/xmem.h
Normal file
18
lib/xmem.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/* Copyright (C) GCK
|
||||
*
|
||||
* This file is part of gcklib
|
||||
*
|
||||
* This project and file is licensed under the BSD-3-Clause licence.
|
||||
* <https://opensource.org/licence/bsd-3-clause>
|
||||
*/
|
||||
|
||||
#ifndef xmem_H
|
||||
#define xmem_H
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
void *xmalloc(size_t size);
|
||||
void *xrealloc(void *ptr, size_t size);
|
||||
void *xcalloc(size_t nmemb, size_t size);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user