Cleanup some copyright stuff
[openssl.git] / crypto / mem_clr.c
index a1a4f93009c9465c13248f862771f5d1d4a2f809..35bfb74eaebd0a4ecbcc80ad6d69e0e774b3a0c8 100644 (file)
@@ -15,7 +15,7 @@
  * the pointer and can't assume that it points to any function in
  * particular (such as memset, which it then might further "optimize")
  */
-typedef void *(*memset_t)(void *,int,size_t);
+typedef void *(*memset_t)(void *, int, size_t);
 
 static volatile memset_t memset_func = memset;