summaryrefslogtreecommitdiff
path: root/lib/memset.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-10 09:03:31 +0000
committerJim Meyering <jim@meyering.net>2003-09-10 09:03:31 +0000
commitd10831f97b4ecadcdb415536259877c4c65e8325 (patch)
tree2b620fc71eb9dc0ae225a61951c1cd85e1da24cf /lib/memset.c
parente0a2e262a57064c6f0d627aa4c5e1d1500d5f2e8 (diff)
downloadcoreutils-d10831f97b4ecadcdb415536259877c4c65e8325.tar.xz
Include <stddef.h>.
Use types required by C89 in prototype.
Diffstat (limited to 'lib/memset.c')
-rw-r--r--lib/memset.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/memset.c b/lib/memset.c
index 5744bcbf7..d7321b200 100644
--- a/lib/memset.c
+++ b/lib/memset.c
@@ -1,5 +1,5 @@
/* memset.c -- set an area of memory to a given value
- Copyright (C) 1991 Free Software Foundation, Inc.
+ Copyright (C) 1991, 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
@@ -15,8 +15,10 @@
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-char *
-memset (char *str, int c, unsigned int len)
+#include <stddef.h>
+
+void *
+memset (void *str, int c, size_t len)
{
register char *st = str;