From 625662a5c1cbb71cf37653df1f31cd60c48b18ae Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 22 May 2024 12:16:41 -0400 Subject: Remove use of sysexits.h --- bin/freecell.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bin/freecell.c') diff --git a/bin/freecell.c b/bin/freecell.c index fbc0fe22..0110ecfe 100644 --- a/bin/freecell.c +++ b/bin/freecell.c @@ -22,7 +22,6 @@ #include #include #include -#include #include #include @@ -367,7 +366,7 @@ int main(int argc, char *argv[]) { switch (opt) { break; case 'd': delay = strtoul(optarg, NULL, 10); break; case 'n': game = strtoul(optarg, NULL, 10); - break; default: return EX_USAGE; + break; default: return 1; } } curse(); -- cgit 1.4.1