From 59500c52b299db1bd589517dbc3b781cb576dcdc Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 12 Apr 2004 07:44:35 +0000 Subject: [PATCH] (set_binary_mode): Return true, not 1. --- lib/setmode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/setmode.h b/lib/setmode.h index a5bb959..8381d12 100644 --- a/lib/setmode.h +++ b/lib/setmode.h @@ -1,6 +1,6 @@ /* Set a file descriptor's mode to binary or to text. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,6 +22,6 @@ #ifndef set_binary_mode bool set_binary_mode (int, bool); # if ! HAVE_SETMODE_DOS -# define set_binary_mode(fd, mode) 1 +# define set_binary_mode(fd, mode) true # endif #endif