Remove unnecessary "unsigned" keyword

This commit is contained in:
tosu 2023-03-17 00:40:01 +01:00
parent 8a660c5fea
commit 3fbc81e6f7
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
void ft_print_alphabet(void)
{
unsigned int i;
int i;
i = 97;
while (i < 123)