You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
679 B
C
14 lines
679 B
C
/*****************************************************************************\
|
|
* _ _ _ _ ___ *
|
|
* | || | ___ | |_ _ __ | | _ _ __ _ |_ ) *
|
|
* | __ |/ _ \| _|| '_ \| || || |/ _` | / / *
|
|
* |_||_|\___/ \__|| .__/|_| \_,_|\__, |/___| *
|
|
* |_| |___/ *
|
|
\*****************************************************************************/
|
|
|
|
#ifndef MEM_UTILS_H
|
|
#define MEM_UTILS_H 1
|
|
inline void *xmalloc(size_t);
|
|
inline void *xrealloc(void *, size_t);
|
|
#endif
|