X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgethostname.c;h=3616810ff20ad437654fb9b930305aee6661d933;hb=709c1f1fb17a388b106f6305a952da3ba802218e;hp=e37e72189bd3943240f5167b00698d3cf6535d1c;hpb=5d08444ebcbd08cd195e1d9f52937a862c92efaa;p=gnulib.git diff --git a/lib/gethostname.c b/lib/gethostname.c index e37e72189..3616810ff 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 @@ -18,21 +18,21 @@ /* David MacKenzie */ #ifdef HAVE_CONFIG_H -#include +# include #endif #ifdef HAVE_UNAME -#include +# include #endif /* Put up to LEN chars of the host name into NAME. 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;