commit c68d449e94a5f5714e751254a15d44bbc4b9f89b
parent bdbe212df78bb9d2bf40b87861b50d7dfafba2b0
Author: call-cc <callcc@vxempire.xyz>
Date: Tue, 2 Jun 2020 16:20:12 -0400
Add note to ln.c
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/ln.c b/src/ln.c
@@ -1,8 +1,6 @@
#include <stdio.h>
#include <unistd.h>
-/* 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)