include limits.h

This commit is contained in:
Kalamatee 2022-04-15 10:52:38 +01:00 committed by deadwood
parent a2f93ef024
commit 85f400b15b
1 changed files with 10 additions and 2 deletions

View File

@ -38,9 +38,17 @@ Boston, MA 02111-1307, USA. */
#include "mmake.h"
#if defined(DEBUG_PROJECT)
#define debug(a) a
# define debug(a) a
#else
#define debug(v)
# define debug(v)
#endif
#if defined(POSIX_EXEC)
# if defined(__APPLE__)
# include <sys/syslimits.h>
# else
# include <limits.h>
# endif
#endif
struct List projects;