1 #ifndef UAE_LIMITS_H
2 #define UAE_LIMITS_H
3 
4 #ifdef HAVE_CONFIG_H
5 #include "config.h"
6 #endif
7 
8 #define MAX_DPATH 1000
9 
10 #ifdef HAVE_LIMITS_H
11 #include <limits.h>
12 #endif
13 
14 #ifndef MAX_PATH
15 #define MAX_PATH PATH_MAX
16 #endif
17 
18 #endif /* UAE_LIMITS_H */
19