diff options
author | Rob Landley <rob@landley.net> | 2021-02-07 22:26:00 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2021-02-07 22:26:00 -0600 |
commit | a4b84d92d9016dc8460255b954ffbd04d5ff6b92 (patch) | |
tree | b503d33a41215f56a45ffb116b6c4b066270109e /toys/posix | |
parent | 664c417af5d16e217557468ba747a369e8e1ab6b (diff) | |
download | toybox-a4b84d92d9016dc8460255b954ffbd04d5ff6b92.tar.gz |
Remove unused function.
Ethan Sommer noticed that chown is using chgrp_main() due to OLDTOY, so
the wrapper function isn't needed.
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/chgrp.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/toys/posix/chgrp.c b/toys/posix/chgrp.c index 807ac824..a63272a5 100644 --- a/toys/posix/chgrp.c +++ b/toys/posix/chgrp.c @@ -99,8 +99,3 @@ void chgrp_main(void) if (CFG_TOYBOX_FREE && ischown) free(own); } - -void chown_main(void) -{ - chgrp_main(); -} |