zziplib/tests/gating/build/__param.h
Jakub Martisko a735e41377 Refresh the tests from the previous commit
Related: RHEL-47131
2024-08-02 12:41:18 +02:00

19 lines
286 B
C

#ifndef __ZZIP_INTERNAL_PARAM_H
#define __ZZIP_INTERNAL_PARAM_H
#include <zzip/conf.h>
#ifdef ZZIP_HAVE_SYS_PARAM_H
#include <sys/param.h> /* PATH_MAX */
#endif
#ifndef PATH_MAX
#ifdef MAX_PATH /* windows */
#define PATH_MAX MAX_PATH
#else
#define PATH_MAX 512
#endif
#endif
#endif