23 lines
1004 B
C
23 lines
1004 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* malloc.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/11/26 16:38:01 by tomoron #+# #+# */
|
|
/* Updated: 2024/11/26 16:41:22 by tomoron ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MALLOC_H
|
|
# define MALLOC_H
|
|
|
|
# ifndef DEBUG
|
|
# define DEBUG 1
|
|
# endif
|
|
|
|
void *malloc(size_t size)
|
|
|
|
#endif
|