diff --git a/_builtins.c b/_builtins.c index 5ba1555..b41d0e1 100644 --- a/_builtins.c +++ b/_builtins.c @@ -59,7 +59,7 @@ int _builtins(char **args) while (builts[i]) { - if (_strcmp(args[0], builts[i]) == 0) + if (strcmp(args[0], builts[i]) == 0) break; i++; } diff --git a/_strcpy.c b/_strcpy.c index 47932c2..8131a06 100644 --- a/_strcpy.c +++ b/_strcpy.c @@ -8,7 +8,7 @@ **/ char *_strcpy(char *dest, char *src) { -char buff[1025]; +char buff[1024]; int i = 0, j, pos = 0; while (*(src + i) != '\0')