diff --git a/Makefile b/Makefile index 317cca1..c2418a4 100644 --- a/Makefile +++ b/Makefile @@ -46,4 +46,6 @@ lib: make -C $(LDIR) cleanlib: lib make fclean -C $(LDIR) -.PHONY: all clean fclean re lib +fsanitize: $(ODIR) $(OBJS) $(DEPS) + $(CC) $(CFLAGS) -o $(NAME) $(OBJS) $(LFLAGS) -fsanitize=address +.PHONY: all clean fclean re lib fsanitize diff --git a/ft_printf b/ft_printf index efe1a21..a79d299 100755 Binary files a/ft_printf and b/ft_printf differ