diff options
author | Arne Babenhauserheide <arne_bab@web.de> | 2011-12-19 06:27:41 +0100 |
---|---|---|
committer | Arne Babenhauserheide <arne_bab@web.de> | 2011-12-19 06:27:41 +0100 |
commit | d8b7944e910af3fdc1109846698d67738761f85a (patch) | |
tree | 3fd29edb1999904c052db1d1bb320ccda0879eab | |
parent | 23162947063b7186737c0671c2fc97aac267ef89 (diff) |
pathmax: added a link to limits.h
-rw-r--r-- | community/gsoc/project_ideas/maxpath.mdwn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/gsoc/project_ideas/maxpath.mdwn b/community/gsoc/project_ideas/maxpath.mdwn index 5be8917f..4a1314c2 100644 --- a/community/gsoc/project_ideas/maxpath.mdwn +++ b/community/gsoc/project_ideas/maxpath.mdwn @@ -13,7 +13,7 @@ is included in the section entitled POSIX describes some constants (or rather macros) like PATH_MAX/MAXPATHLEN and similar, which may be defined by the system to indicate certain limits. Many people overlook the *may* though: Systems only should define them if they -actually have such fixed limits. The Hurd, following the GNU Coding Standards, +actually have such fixed limits (see [limits.h](http://pubs.opengroup.org/onlinepubs/009695399/basedefs/limits.h.html)). The Hurd, following the GNU Coding Standards, tries to avoid this kind of arbitrary limits, and consequently doesn't define the macros. |