mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 06:25:01 +00:00

This allows me to keep prototyping things on a random desktop machine, even if that machine has its own ideas about foo_t types.
9 lines
196 B
C++
9 lines
196 B
C++
#pragma once
|
|
|
|
#include <limits>
|
|
#include "UnixTypes.h"
|
|
|
|
static const Unix::size_t GoodBufferSize = 4096;
|
|
|
|
inline static const Unix::off_t maxFileOffset = std::numeric_limits<Unix::off_t>::max();
|
|
|