ladybird/Kernel/Limits.h
Andreas Kling 8bb18fdc56 Kernel: Get rid of Unix namespace.
This is no longer needed as the Kernel can stand on its own legs now
and there won't be any conflict with host system data types.
2019-01-23 06:57:00 +01:00

10 lines
138 B
C

#pragma once
#include "UnixTypes.h"
inline static const off_t maxFileOffset = 2147483647;
static const size_t GoodBufferSize = 4096;