diff options
Diffstat (limited to 'Build/source/texk/seetexk/bzero.c')
-rw-r--r-- | Build/source/texk/seetexk/bzero.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Build/source/texk/seetexk/bzero.c b/Build/source/texk/seetexk/bzero.c new file mode 100644 index 00000000000..cf1dd416452 --- /dev/null +++ b/Build/source/texk/seetexk/bzero.c @@ -0,0 +1,17 @@ +#ifndef lint +static char rcsid[] = "$Header: /usr/src/local/tex/local/mctex/lib/RCS/bzero.c,v 3.1 89/08/22 21:42:12 chris Exp $"; +#endif + +/* + * Sample bzero() routine. + * This should be rewritten to be as fast as possible for your + * machine. + */ +bzero(addr, count) + register char *addr; + register int count; +{ + + while (--count >= 0) + *addr++ = 0; +} |