diff options
| author | 2024-09-12 09:13:01 -0400 | |
|---|---|---|
| committer | 2024-09-12 09:13:01 -0400 | |
| commit | 2870751be3f8874378f1a383e6d264b87195580d (patch) | |
| tree | f4a2d13121723140cd44bebc69b01c7db48a6c21 /src/lush.c | |
| parent | updated buffer size for date to account for compiler warning (diff) | |
added e2e testing to cover basic shell functionality
Diffstat (limited to 'src/lush.c')
| -rw-r--r-- | src/lush.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -881,8 +881,7 @@ char *lush_read_line() { return buffer; } -// -- static helper for resolving aliases -- -static char *lush_resolve_aliases(char *line) { +char *lush_resolve_aliases(char *line) { // Allocate memory for the new string char *result = (char *)malloc(BUFFER_SIZE); if (!result) { |
