diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-15 10:57:33 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-15 10:57:33 -0400 |
commit | 04150a407f65b63ea5117bc8b7297a5fbefc7487 (patch) | |
tree | 6d7981fa6cba7a32ed29c71d86ef3fec0892da9d /command/yes.c | |
parent | refactor and add su (diff) | |
download | lazysphere-04150a407f65b63ea5117bc8b7297a5fbefc7487.tar.gz lazysphere-04150a407f65b63ea5117bc8b7297a5fbefc7487.tar.bz2 lazysphere-04150a407f65b63ea5117bc8b7297a5fbefc7487.zip |
refactor cmd names
Diffstat (limited to 'command/yes.c')
-rw-r--r-- | command/yes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/yes.c b/command/yes.c index f979a9f..58d4d67 100644 --- a/command/yes.c +++ b/command/yes.c @@ -6,7 +6,7 @@ static void help(void) { printf("Repeatedly output a line with all specified STRING(s), or 'y'.\n"); } -COMMAND(yes) { +COMMAND(yes_main) { const char* repeat; int i; |