]> granicus.if.org Git - procps-ng/commitdiff
pgrep: fix compiler warnings
authorSami Kerola <kerolasa@iki.fi>
Fri, 2 Nov 2012 17:50:52 +0000 (17:50 +0000)
committerCraig Small <csmall@enc.com.au>
Tue, 6 Nov 2012 11:27:48 +0000 (22:27 +1100)
pgrep.c:195:12: warning: 'fcntl_lock' defined but not used [-Wunused-function]
pgrep.c:575:5: warning: no previous declaration for 'signal_option' [-Wmissing-declarations]

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
pgrep.c

diff --git a/pgrep.c b/pgrep.c
index 6cba9aa5a192cf763a16174afdec6f8aa434fff2..4938bc9da53e716e77b61f09128bb3bc500002ba 100644 (file)
--- a/pgrep.c
+++ b/pgrep.c
@@ -187,23 +187,6 @@ static int strict_atol (const char *restrict str, long *restrict value)
 
 #include <sys/file.h>
 
-/* Seen non-BSD code do this:
- *
- *if (fcntl_lock(pid_fd, F_SETLK, F_WRLCK, SEEK_SET, 0, 0) == -1)
- *                return -1;
- */
-int fcntl_lock(int fd, int cmd, int type, int whence, int start, int len)
-{
-       struct flock lock[1];
-
-       lock->l_type = type;
-       lock->l_whence = whence;
-       lock->l_start = start;
-       lock->l_len = len;
-
-       return fcntl(fd, cmd, lock);
-}
-
 /* We try a read lock. The daemon should have a write lock.
  * Seen using flock: FreeBSD code */
 static int has_flock(int fd)
@@ -572,7 +555,7 @@ static struct el * select_procs (int *num)
        return list;
 }
 
-int signal_option(int *argc, char **argv)
+static int signal_option(int *argc, char **argv)
 {
        int sig;
        int i;