summaryrefslogtreecommitdiff
path: root/include/limits.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2020-01-25 23:08:55 -0500
committerRich Felker <dalias@aerifal.cx>2020-01-25 23:08:55 -0500
commit614c9e7b1eecb71c5718c34f1724e8758cbe3c27 (patch)
treec2533a1a4a20392851586d52bc8456c2d20b1ebe /include/limits.h
parent83350eb17b9cb355e3f08b0340c4f1e8c437fac9 (diff)
downloadmusl-614c9e7b1eecb71c5718c34f1724e8758cbe3c27.tar.gz
move struct dirent to bits header, allow NAME_MAX to vary
this is not necessary for linux but is a simple, inexpensive change to make that facilitates ports to systems where NAME_MAX needs to be longer.
Diffstat (limited to 'include/limits.h')
-rw-r--r--include/limits.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/limits.h b/include/limits.h
index 1499eaae..53a27b9d 100644
--- a/include/limits.h
+++ b/include/limits.h
@@ -41,7 +41,9 @@
#define PIPE_BUF 4096
#define FILESIZEBITS 64
+#ifndef NAME_MAX
#define NAME_MAX 255
+#endif
#define PATH_MAX 4096
#define NGROUPS_MAX 32
#define ARG_MAX 131072