Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4920 → Rev 4921

/contrib/sdk/sources/newlib/libc/include/sys/param.h
6,6 → 6,7
# define _SYS_PARAM_H
 
#include <sys/config.h>
#include <sys/syslimits.h>
#include <machine/endian.h>
#include <machine/param.h>
 
19,6 → 20,8
# define PATHSIZE (1024)
#endif
 
#define MAXPATHLEN PATH_MAX
 
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))