Skip to content

Commit

Permalink
fix: Include stdio.h bc readline needs it on certain systems
Browse files Browse the repository at this point in the history
  • Loading branch information
itislu committed Jun 7, 2024
1 parent 3c81020 commit e605af2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: ldulling <ldulling@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/08 15:56:26 by lyeh #+# #+# */
/* Updated: 2024/05/05 12:37:49 by ldulling ### ########.fr */
/* Updated: 2024/06/07 07:46:00 by ldulling ### ########.fr */
/* */
/* ************************************************************************** */

Expand All @@ -20,6 +20,7 @@
# include <linux/limits.h>
# include <signal.h>
# include <stdbool.h>
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
# include <sysexits.h>
Expand Down

0 comments on commit e605af2

Please sign in to comment.