]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/bzero.c
pex-common.c: New file.
[thirdparty/gcc.git] / libiberty / bzero.c
CommitLineData
6599da04
JM
1/* Portable version of bzero for systems without it.
2 This function is in the public domain. */
3
4/*
6599da04 5
aaa5f039 6@deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
6599da04 7
aaa5f039
DD
8Zeros @var{count} bytes starting at @var{mem}. Use of this function
9is deprecated in favor of @code{memset}.
6599da04 10
aaa5f039 11@end deftypefn
6599da04
JM
12
13*/
14
15
16void
9486db4f 17bzero (char *to, int count)
6599da04
JM
18{
19 while (count-- > 0)
20 {
21 *to++ = 0;
22 }
23}