From: Jim Meyering Date: Tue, 1 Jun 2004 13:22:25 +0000 (+0000) Subject: Update prototype to reflect new signature. X-Git-Tag: v5.3.0~1435 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=63107c9f9a225871d1be1a25f2250b10b19d0a5b;p=thirdparty%2Fcoreutils.git Update prototype to reflect new signature. Include , for size_t. --- diff --git a/lib/xreadlink.h b/lib/xreadlink.h index d9441215f3..5b2604bfea 100644 --- a/lib/xreadlink.h +++ b/lib/xreadlink.h @@ -1,6 +1,6 @@ /* readlink wrapper to return the link name in malloc'd storage - Copyright (C) 2001, 2003 Free Software Foundation, Inc. + Copyright (C) 2001, 2003, 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 @@ -19,4 +19,5 @@ /* Written by Jim Meyering */ -char *xreadlink (char const *); +#include +char *xreadlink (char const *, size_t);