2023-05-26 22:21:07 +03:00
|
|
|
#ifndef _LIMITS_H
|
|
|
|
#define _LIMITS_H 1
|
|
|
|
|
|
|
|
// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
// FIXME: What do I have to define here?
|
|
|
|
// glibc seems to only define numerical
|
|
|
|
// and posix constants
|
|
|
|
|
2023-07-07 23:08:49 +03:00
|
|
|
#define OPEN_MAX 64
|
2023-07-10 10:45:05 +03:00
|
|
|
#define NAME_MAX 255
|
2023-07-07 23:08:49 +03:00
|
|
|
|
2023-05-26 22:21:07 +03:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|