create Makefile to compile a .so

This commit is contained in:
2024-11-26 20:14:27 +01:00
commit e809472771
3 changed files with 92 additions and 0 deletions

22
srcs/includes/malloc.h Normal file
View File

@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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