blob: 9fba6f3d4b46ffe251f96082c1fbd575334b13e9 [file] [edit]
///////////////////////////////////////////////////////////////////////////////
//// 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