Auto stash before merge of "master" and "origin/ralentit"

This commit is contained in:
Manzovince
2019-06-01 14:54:12 +02:00
parent 5d4de7718e
commit 482861a3c9
3 changed files with 8 additions and 7 deletions

3
main.c
View File

@@ -30,7 +30,7 @@ int *create_dope(char *av, int mdp)
comp = "dope";
if (!(dope = (int*)malloc(sizeof(*dope) * 4)))
return (NULL);
return (0);
i = 0;
while (i < 4)
dope[i++] = 0;
@@ -110,5 +110,6 @@ int main(int ac, char **av)
else
print_error("usage: Please submit a file.\n> ./fillit file.fillit\n");
free(dope);
while (1) ;
return (0);
}