diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/Kbuild | 1 | ||||
-rw-r--r-- | coreutils/ls.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/Kbuild b/coreutils/Kbuild index 67c5658..57100a9 100644 --- a/coreutils/Kbuild +++ b/coreutils/Kbuild @@ -44,6 +44,7 @@ lib-$(CONFIG_LENGTH) += length.o lib-$(CONFIG_LN) += ln.o lib-$(CONFIG_LOGNAME) += logname.o lib-$(CONFIG_LS) += ls.o +lib-$(CONFIG_FTPD) += ls.o lib-$(CONFIG_MD5SUM) += md5_sha1_sum.o lib-$(CONFIG_MKDIR) += mkdir.o lib-$(CONFIG_MKFIFO) += mkfifo.o diff --git a/coreutils/ls.c b/coreutils/ls.c index 7b65d04..f4f2724 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -864,7 +864,6 @@ static const char ls_color_opt[] ALIGN1 = #endif -int ls_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int ls_main(int argc UNUSED_PARAM, char **argv) { struct dnode **dnd; |