From c68d449e94a5f5714e751254a15d44bbc4b9f89b Mon Sep 17 00:00:00 2001 From: call-cc Date: Tue, 2 Jun 2020 16:20:12 -0400 Subject: [PATCH] Add note to ln.c --- src/ln.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ln.c b/src/ln.c index 9493051..d423506 100644 --- a/src/ln.c +++ b/src/ln.c @@ -1,8 +1,6 @@ #include #include -/* TODO -s flag */ - int main(int argc, char *argv[]) { @@ -14,6 +12,7 @@ main(int argc, char *argv[]) } int opts; int fd; + /* I am aware that this doesn't conform to style, but it's the only option that actually works */ while((opts = getopt(argc, argv, "s:")) != -1) { switch(opts)