Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- lib/pager.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/pager.c b/lib/pager.c index 5cf8c03..c6e74e8 100644 --- a/lib/pager.c +++ b/lib/pager.c @@ -40,16 +40,6 @@ static inline void close_pair(int fd[2]) close(fd[1]); } -static inline void dup_devnull(int to) -{ - int fd = open(NULL_DEVICE, O_RDWR); - - if (fd < 0) - err(EXIT_FAILURE, _("cannot open %s"), NULL_DEVICE); - dup2(fd, to); - close(fd); -} - static int start_command(struct child_process *cmd) { int need_in; -- 1.8.3 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html