2005-04-01 H.J. Lu <hongjiu.lu@intel.com>
[deliverable/binutils-gdb.git] / libiberty / bzero.c
index 8874118698e4d826c4e86cc236746bce2d5d303a..1f52d2d3098f311b4e900f9a871174cdc17e7bec 100644 (file)
@@ -14,9 +14,7 @@ is deprecated in favor of @code{memset}.
 
 
 void
-bzero (to, count)
-  char *to;
-  int count;
+bzero (char *to, int count)
 {
   while (count-- > 0)
     {
This page took 0.023024 seconds and 4 git commands to generate.