diff --git a/coreutils/dirname.c b/coreutils/dirname.c index a18acb8..ecb58f1 100644 --- a/coreutils/dirname.c +++ b/coreutils/dirname.c @@ -1,7 +1,7 @@ #include #include -int main(const int argc, const char **argv) { +int main(const int argc, char **argv) { if (argc <= 1) { printf("dirname [dirname]\n"); diff --git a/procps/uptime.c b/procps/uptime.c index 5a0e3b4..dacde01 100644 --- a/procps/uptime.c +++ b/procps/uptime.c @@ -1,4 +1,5 @@ #include +#include #include #if defined(CLOCK_BOOTTIME)