Converted bzero() into memset() which is no Linuxism anymore and also
[infodrom/dtaus] / bigint.c
index 059c71b..38511aa 100644 (file)
--- a/bigint.c
+++ b/bigint.c
@@ -1,6 +1,6 @@
 /*
     bigint.c - Manage big positive integer numbers
-    Copyright (c) 1996  Martin Schulze <joey@artis.uni-oldenburg.de>
+    Copyright (c) 1996,2001  Martin Schulze <joey@artis.uni-oldenburg.de>
 
     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
@@ -95,7 +95,7 @@ void bigint_sprintf (char *res, char *format, bigint a)
   char form[6];
   int i, max;
 
-  bzero(s, sizeof(s));
+  memset (s, 0, sizeof(s));
   sprintf(form, "%%0%dlu", BIGINT_PREC);
   max = BIGINT_LEN;
   for (;max>0 && !a.val[max-1];max--);