Make style match the surrounding style. Use memset() instead of bzero()

because it's standard (bah, show me a real system without bzero()...)

Noted by:	bde
This commit is contained in:
Brian Feldman 2000-07-31 23:36:08 +00:00
parent d61dfe72b6
commit 63ec88f55f

View file

@ -1862,7 +1862,7 @@ main (int argc, char **argv)
insertkey (key);
key = (struct keyfield *)
xmalloc (sizeof (struct keyfield));
bzero(key, sizeof(*key));
memset (key, 0, sizeof (struct keyfield));
key->eword = -1;
key->ignore = NULL;
key->translate = NULL;