diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-10-26 16:00:29 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-10-26 16:02:07 +0300 |
commit | 41ae1a0f0d86d2fc19f333ee23889c11beb0a4dd (patch) | |
tree | b29207e44aa8dcc10ef2deb51ac1514fb934c420 /src/actions.c | |
parent | a6b2b4b2a4095d2f95419df986378e54432c2d71 (diff) | |
download | ck-41ae1a0f0d86d2fc19f333ee23889c11beb0a4dd.tar.gz ck-41ae1a0f0d86d2fc19f333ee23889c11beb0a4dd.tar.bz2 ck-41ae1a0f0d86d2fc19f333ee23889c11beb0a4dd.zip |
Confort to pedantic std-c99 and update readme
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/actions.c b/src/actions.c index b887399..48a4066 100644 --- a/src/actions.c +++ b/src/actions.c @@ -230,10 +230,8 @@ int run_LIST(UserOpt *opt, Conf *conf) { return 1; } -FILE *popen(const char *command, const char *mode); -int pclose(FILE *stream); - int run_SEARCH(UserOpt *opt, Conf *conf) { + UNUSED(conf); if (system("which grep > /dev/null") != 0) { return 2; } |