From: Jim Meyering Date: Wed, 10 Sep 2003 08:37:38 +0000 (+0000) Subject: Include . X-Git-Tag: v5.1.0~774 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73ec01a11210a629608a3d206bceffb28d7faf37;p=thirdparty%2Fcoreutils.git Include . (gethostname): Define with prototype. Length is size_t, not int. --- diff --git a/lib/gethostname.c b/lib/gethostname.c index 3d66dc9360..3616810ff2 100644 --- a/lib/gethostname.c +++ b/lib/gethostname.c @@ -1,5 +1,5 @@ /* gethostname emulation for SysV and POSIX.1. - Copyright (C) 1992 Free Software Foundation, Inc. + Copyright (C) 1992, 2003 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 @@ -29,10 +29,10 @@ Null terminate it if the name is shorter than LEN. Return 0 if ok, -1 if error. */ +#include + int -gethostname (name, len) - char *name; - int len; +gethostname (char *name, size_t len) { #ifdef HAVE_UNAME struct utsname uts;