mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 20:55:07 +00:00

Dealing with the unsigned overflow propagation here just seems unreasonably error prone. Let's limit ourselves to 2GB buffer sizes instead.
9 lines
139 B
C
9 lines
139 B
C
#pragma once
|
|
|
|
#include "UnixTypes.h"
|
|
|
|
inline static const off_t maxFileOffset = 2147483647;
|
|
|
|
static const ssize_t GoodBufferSize = 4096;
|
|
|
|
|