mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
beda478821
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;
|
|
|
|
|