2.9
[glibc/nacl-glibc.git] / sysdeps / generic / sys / param.h
blob0e10a0ea941d7f0c015ddd87d12e30e542b1fb2a
1 /* This file should contain various parameter macros appropriate for the
2 machine and operating system. There is no standard set of macros; this
3 file is just for compatibility with programs written for Unix that
4 expect it to define things. On Unix systems that do not have their own
5 sysdep version of this file, it is generated at build time by examining
6 the installed headers on the system. */
8 #include <limits.h>
10 #define MAXSYMLINKS 1
11 #define MAXPATHLEN 256
13 /* Macros for min/max. */
14 #define MIN(a,b) (((a)<(b))?(a):(b))
15 #define MAX(a,b) (((a)>(b))?(a):(b))