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

15
srcs/malloc.c Normal file
View File

@ -0,0 +1,15 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* malloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/23 17:19:59 by tomoron #+# #+# */
/* Updated: 2024/11/26 16:42:53 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
void *malloc(size_t size)
{
}