blob: 7ef5721fb46d9c51fbd9fbafdf455b021ed7f0a1 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <limits.h>
/* #undef NAME_MAX */
/* MIN: _POSIX_NAME_MAX */
/* POSIX + XOPEN: MIN: _XOPEN_NAME_MAX */
/* CHECK: pathconf */
/** the maximum number of bytes (not counting chr(0)) in a filename **/
/*
POSIX(1)
*/
|