diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-01 00:38:33 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-01 00:38:33 -0400 |
commit | 5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae (patch) | |
tree | ea3b2d94a7c5a1d368e09a60975976fcb6c21ce2 /src/commands/tail.c | |
parent | tee, whoami, wc (diff) | |
download | lazysphere-5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae.tar.gz lazysphere-5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae.tar.bz2 lazysphere-5a0ec4ed3711beda63450fcfe0bbbd1656fbb1ae.zip |
move back to c99
Diffstat (limited to 'src/commands/tail.c')
-rw-r--r-- | src/commands/tail.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/commands/tail.c b/src/commands/tail.c index 24d7b1f..118a771 100644 --- a/src/commands/tail.c +++ b/src/commands/tail.c @@ -1,11 +1,5 @@ #include "../command.h" -#include <stdio.h> -#include <string.h> -#include <sys/select.h> -#include <sys/stat.h> -#include <unistd.h> - struct Flags { bool lines; int count; |