Luna/libs/libc/include/luna/os-limits.h
apio f46831f459 libc: Define PATH_MAX
This restriction is actually not enforced by the kernel. It should be.
2022-11-12 14:13:28 +01:00

13 lines
191 B
C

#ifndef _LUNA_OS_LIMITS_H
#define _LUNA_OS_LIMITS_H
#define OPEN_MAX 32
#define ATEXIT_MAX 32
#define NAME_MAX 64
#define PATH_MAX 4096
#define PAGESIZE 4096
#define PAGE_SIZE 4096
#endif