From 1c27b56095b4a82be7d072baabc09262cb4227e5 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 16 Feb 2017 00:40:02 -0800 Subject: maint: xsetmode renamed to xbinary-io * bootstrap.conf, src/base64.c, src/cat.c, src/cksum.c: * src/head.c, src/md5sum.c, src/od.c, src/split.c, src/sum.c: * src/tac.c, src/tail.c, src/tee.c, src/tr.c, src/wc.c: Adjust to renaming of the xsetmode module to xbinary-io, and of the xsetmode function to xset_binary_mode. --- src/od.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/od.c') diff --git a/src/od.c b/src/od.c index 0da85dae5..f469326ff 100644 --- a/src/od.c +++ b/src/od.c @@ -29,8 +29,8 @@ #include "ftoastr.h" #include "quote.h" #include "stat-size.h" +#include "xbinary-io.h" #include "xprintf.h" -#include "xsetmode.h" #include "xstrtol.h" /* The official name of this program (e.g., no 'g' prefix). */ @@ -914,7 +914,7 @@ open_next_file (void) input_filename = _("standard input"); in_stream = stdin; have_read_stdin = true; - xsetmode (STDIN_FILENO, O_BINARY); + xset_binary_mode (STDIN_FILENO, O_BINARY); } else { -- cgit v1.2.3-54-g00ecf