From: Ulrich Drepper Date: Fri, 30 Jan 1998 17:22:29 +0000 (+0000) Subject: (__strerror_r): Fix description of function. X-Git-Tag: cvs/before-sparc-2_0_x-branch~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b9df8c47c3be5d0e6a543423184381af8e0b317;p=thirdparty%2Fglibc.git (__strerror_r): Fix description of function. --- diff --git a/string/strerror_r.c b/string/strerror_r.c index 6a43a556a99..fc967441be5 100644 --- a/string/strerror_r.c +++ b/string/strerror_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 93, 94, 95, 96, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -21,8 +21,8 @@ extern char *_strerror_internal __P ((int, char *, size_t)); -/* Return a string describing the errno code in ERRNUM. At most BUFLEN - characters of the result will be placed in STRERRBUF. */ +/* Return a string describing the errno code in ERRNUM. If a temporary + buffer is required, at most BUFLEN bytes of BUF will be used. */ char * __strerror_r (int errnum, char *buf, size_t buflen) {