X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsafe-read.c;h=e404586c75fe9b31c2153473111606d8d04d7fd1;hb=27646e67c4e73f21d438d0161797386ff36bb04a;hp=93d35e4fa6e3975bc11596fb9ed92fb761d5f83d;hpb=96dcb4e9329ab0b64d747ce196651a38e182fa5c;p=gnulib.git diff --git a/lib/safe-read.c b/lib/safe-read.c index 93d35e4fa..e404586c7 100644 --- a/lib/safe-read.c +++ b/lib/safe-read.c @@ -1,5 +1,5 @@ /* safe-read.c -- an interface to read that retries after interrupts - Copyright (C) 1993, 1994 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1998 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 @@ -12,18 +12,18 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H -#include +#if HAVE_CONFIG_H +# include #endif #include -#ifdef HAVE_UNISTD_H -#include +#if HAVE_UNISTD_H +# include #endif #include @@ -31,17 +31,16 @@ extern int errno; #endif +#include "safe-read.h" + /* Read LEN bytes at PTR from descriptor DESC, retrying if interrupted. Return the actual number of bytes read, zero for EOF, or negative for an error. */ -int -safe_read (desc, ptr, len) - int desc; - char *ptr; - int len; +ssize_t +safe_read (int desc, void *ptr, size_t len) { - int n_chars; + ssize_t n_chars; if (len <= 0) return len;