| /////////////////////////////////////////////////////////////////////////////// |
| //// Licensed Materials - Property of IBM |
| //// ZOSLIB |
| //// (C) Copyright IBM Corp. 2022. All Rights Reserved. |
| //// US Government Users Restricted Rights - Use, duplication |
| //// or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. |
| ///////////////////////////////////////////////////////////////////////////////// |
| // |
| #ifndef ZOS_LIMITS_H |
| #define ZOS_LIMITS_H |
| |
| #include_next <limits.h> |
| |
| #ifndef PATH_MAX |
| #define PATH_MAX _XOPEN_PATH_MAX |
| #endif |
| |
| #endif |