Subversion Repositories Kolibri OS

Rev

Rev 4874 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 94... Line 94...
94
 
94
 
95
#   ifndef __LONG_LONG_MAX__
95
#   ifndef __LONG_LONG_MAX__
96
#    define __LONG_LONG_MAX__ 9223372036854775807LL
96
#    define __LONG_LONG_MAX__ 9223372036854775807LL
Line 97... Line 97...
97
#   endif
97
#   endif
-
 
98
 
98
 
99
#   if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) ||   \
99
#   if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
100
  (defined(__cplusplus) && __cplusplus >= 201103L)
100
/* Minimum and maximum values a `signed long long int' can hold.  */
101
/* Minimum and maximum values a `signed long long int' can hold.  */
101
#    undef LLONG_MIN
102
#    undef LLONG_MIN
102
#    define LLONG_MIN (-LLONG_MAX-1)
103
#    define LLONG_MIN (-LLONG_MAX-1)
Line 141... Line 142...
141
#endif
142
#endif
Line 142... Line 143...
142
 
143
 
143
#ifndef PATH_MAX
144
#ifndef PATH_MAX
144
#define PATH_MAX	4096
145
#define PATH_MAX	4096
145
#endif
-