ref: dcd241e8497b68c23dde812f9cd85f5d08f990a9
parent: d80b65ed308ce3e62471f062a83759d2460f123e
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Wed Aug 16 19:40:11 EDT 2023
libbio: bump Bsize to IOUNIT
--- a/sys/include/ape/bio.h
+++ b/sys/include/ape/bio.h
@@ -14,7 +14,7 @@
enum
{
- Bsize = 8*1024,
+ Bsize = IOUNIT,
Bungetsize = UTFmax+1, /* space for ungetc */
Bmagic = 0x314159,
Beof = -1,
--- a/sys/include/bio.h
+++ b/sys/include/bio.h
@@ -6,7 +6,7 @@
enum
{
- Bsize = 8192,
+ Bsize = IOUNIT,
Bungetsize = UTFmax+1, /* space for ungetc */
Bmagic = 0x314159,
Beof = -1,
--
⑨