libbio: bump Bsize to IOUNIT

This commit is contained in:
cinap_lenrek 2023-08-16 23:40:11 +00:00
parent 5030157da9
commit 38ea1ac105
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ typedef struct Biobufhdr Biobufhdr;
enum enum
{ {
Bsize = 8*1024, Bsize = IOUNIT,
Bungetsize = UTFmax+1, /* space for ungetc */ Bungetsize = UTFmax+1, /* space for ungetc */
Bmagic = 0x314159, Bmagic = 0x314159,
Beof = -1, Beof = -1,

View file

@ -6,7 +6,7 @@ typedef struct Biobufhdr Biobufhdr;
enum enum
{ {
Bsize = 8192, Bsize = IOUNIT,
Bungetsize = UTFmax+1, /* space for ungetc */ Bungetsize = UTFmax+1, /* space for ungetc */
Bmagic = 0x314159, Bmagic = 0x314159,
Beof = -1, Beof = -1,